In the simple web page, just like a human, it must contain head and body.

<!DOCTYPE html>
<html>
  <head>
    <title>My first web page</title>
  </head>
  <body>
    <img src="images/doggy.jpg" alt="" />
    <p>@Paul Lu</p>
    <p>I love Frontend Dev</p>
  </body>
</html>

In the case above, we have created the head by have <head> ... </head>

and the body with <body> ... </body>