Unlike the head section, the body section is the actual info contained on the web page itself. The body section should go below the head section, within the HTML tags. Here is what the structure should look like:
<html> <--- Starts a HTML Page (web page)
<head> <--- Starts the head section
<title>This is the How to Create a Simple Web Page with HTML Basics Bright Hub Tutorial</title> <--- The title for the web page
</head> <--- Closes the head section
<body> <--- Starts the body
</body> <--- Closes the body
</html> <--- Closes the HTML (web page)
Insert some information into the body section.
<body>
<h1> Bright Hub FTW </h1>
<p>this is just a simple web page html tutorial... </p>
</body>
The above code will give you a h1 title of Bright Hub and a paragraph.