Body Element

The body element contains the HTML elements that are visible to the end human user. There can be only one body element in a given HTML document.

<!DOCTYPE html>
<html>
  <head>
    ...
  </head>
  <body>
    <div>
      <h1>
        Horses
      </h1>
      <p>
        Geralt's horse is Roach and Ciri's horse is Kelpie.
      </p>
    </div>
  </body>
<html>

It is acceptable for a body element to include script elements.