Divs

Create a simple practice Webpage with the following features:

DEFINE YOUR PAGE LAYOUT USING DIVS
01 Create an Internal Stylesheet
02 Define a masthead Div for the page using your prefered colors and fonts
03 Define a topNav Div for the page using your prefered colors and fonts
04 Define a page content Div for the page using your prefered colors and fonts
05 Define a footer Div for the page using your prefered colors and fonts

ORGANIZE YOUR BODY USING DIVS
06 Use the masthead Div in the body of the page
07 Use the topNav Div in the body of the page to set up the initial layout for the website navigation, as an example (the links do not have to work at this point):
<div id="topNav">
     Home | Resume | Portfolio | Contact Me
</div>
08 Use the content Div in the body of the page
09 At the bottom of the page add the following div for the footer:
<div id="footer">
     Created by Your Name
</div>

10 Add sample text to each Div section of your page and make the page look attractive

ValidateValidate

Validation checks the syntax of your file, looking for both errors and possible issues when viewing your page in a browser. Some of the problems reported are missing end tags, missing characters, invalid attributes, incorrect nesting of elements...
 your file, see: http://validator.w3.org

Save your file as Divs-YourLastName.htm and preview it in your browser.