HTML Refresher

Well finishing my first session with this html tutorial. I remember taking a run at html back in high school, it's going a lot better this time. I made it to quotations, had to give up there for the night, seems to be going quickly though. We have played with a little css embeded in the html. Its all still pretty simple but there is always something gratifying about even simple code projects. I guess it doesn't matter how silly it is, when you build it, you have some pride in it.

w3school has been great. Definately recomended it for someone wanting to get a handle on html.

[caption id="attachment_27" align="alignnone" width="200"]w3schools.com w3schools.com[/caption]

<!-- spose its not complete without a code sample -->
<!DOCTYPE html>
<html>
<head>
<title>My Second Page</title>
</head>
<body style="background-color:lightgrey">
<h1 style="color:red;text-align:center">This Is Heading One</h1>
<hr />
<h2 style="background-color:white;text-align:center">This Is Heading Two</h2>
<hr />
<h3><i>This Is Heading Three</i></h3>
<hr />

<p>Here Is Some Text</p>
<p><b>Here Is Some Text</b></p>
</body>
</html>