Part of an HTML document is the page body. The body is where the page’s main content is located. It is usually placed after the head tags.  The page body may include elements such as paragraphs, images, headings, menus, and a footer.  It also may contain JavaScript code inside of script tags.

 

<html> 
    <head> 
     <meta name='viewport' content='width=device-width, initial-scale=1.0'> 
     <meta charset="UTF-8"> 
     <title>Dice Roller Durby</title> 
     <link rel="stylesheet" type="text/css" href="style.css"> 
    </head> 
    

     <!-- Page Body --> 
     <body> 
       <h1>Dice Roller Durby</h1> 
       <p>Welcome to version 1 of Dice Roller Durby</p> 
       <!-- JavaScript Link --> 
       <script src="main.js"></script> 
    </body> 
    <!-- Page Body Ends-->

</html>