Colors

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 Add an inline style to set a font color for an <h1> tag using an RGB triplet
03 Add an inline style to set a font color for a <p> tag using a Hex triplet
04 Add an inline style to set a background color for the <body> tag
05 Add an inline style to set both a background color and a contrasting text color for a <span> tag
06 Add an inline style to create a border and set a border color for a <div> tag
07 Use an internal stylesheet to set a font color for all <h2> tags using an RGB triplet
08 Use an internal stylesheet to set a font color for all <h3> tags using a Hex triplet
09 Use an internal stylesheet to set a background color for a <div> tag
10 Use an internal stylesheet to create a border and set a border color for all <table> tags

Use all of the color styles defined above in a Web page.

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