Web pages are divided into two main sections. The HEAD and the BODY.

<HEAD>

A typical HEAD code is like this

<HTML><HEAD><TITLE>Web Page</TITLE></HEAD>

<HEAD>

The HEAD section always comes first and is followed by the BODY.The HEAD section gives the browser information that does not appear on the page.

<BODY> The BODY section is everything that will appear on the web page. The basic code is structured like this:

<BODY>

all other code goes here

</BODY></HTML>

The following video will explain these concepts more.