The BODY Section

The BODY section defined between the <body> and </body> tags. This is where a lot of the visible work is done. It defines what the user sees in the browser window. Adding a BODY section, our document would now look like this:

<html>
<head>
<title>My HTML Document</title>
</head>
<body>
</body>
</html>