Styles

Create a simple practice Web page with the following features:

01 Properly start a new page with all the appropriate tags: <html> <head> <title> <body>
02 Set the background color or background image of your Web page through an internal stylesheet
03 Set the text color and desired font for all your <h1> tags through the internal stylesheet
04 Set the desired font size and full justify all of your paragraphs through the internal stylesheet
05 Define an ID selector called footer in the internal stylesheet
     Set the font size for footer to small, the color to blue, and text-align to center.
06 At the bottom of the page add the following div for the footer:
<div id="footer">
     Created by Your Name
</div>
07 Define a class selector through the internal stylesheet
08 Correctly use the defined class in a <span> tag within the body of your Web page
09 Use an inline style to set the width, margins, and desired font family for a second <div> tag
10 Use an inline style to bold and set the color of a key phrase with a <span> tag

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 Styles-YourLastName.htm and preview it in your browser.