Elements in the Body

The body element is where all of the “meat & potatoes” (if you will) of the site gets placed. This is the data that is rendered by the browser and displayed on the client’s local computer.

Within the body there will generally be 2 types of markup used:

  1. Structural markup
  2. Semantic markup
HTML
<!DOCTYPE html>
<html lang="en">

  <body>
    <!-- My "Way-Cool Awesome Site" contents, visible to visitors. -->
  </body>
</html>