Home Logic Battle Card RPG Godot Tutorials Linux Gaming Blog NodeJS + Postgres LAMP Stack HTML CSS PHP ReactJS VR Tech Blog Palm Beach Techie PHP Fiddle

Intro to HTML: Body Tags

Quick Copy Boxes


<body> This is a starting body tag.

</body> This is an ending body tag.


<!DOCTYPE html>
<html>
  <head>
    <!-- Links and Scripts-->
    <link rel="stylesheet" type="text/css" href="custom.css">
    <title>   <!-- title-->  </title>
    <style>
      /* CSS Code*/
    </style>
  </head>
  <body>
    <!-- Main Content goes here-->
  </body>
</html>
    

The body is where the page's main content is located. It is usually placed after the head tags.