Step 2 As you may know html is a very complex thing. Though once you learn it is can be as easy as: 123!
You should edit html using notepad. You can fins it by going to Start, My Programs, Accesories, and there it is. Just type this in notepad.
So the first thing about html is you always start out like this:

<html>
</html>

Then add in some Head tags:

 

<html>
<head>
</head>

</html>

Then some Title tags:

 

<html>
<head>
<title>
</title>

</head>
</html>

Within the title tags is what you see in the blue top of your browser. So just put like a cool name for your website.

 

<html>
<head>
<title>
My cool site!
</title>
</head>
</html>

Some body tags next!

<html>
<head>
<title>
My cool site!
</title>
</head>
<body>
</body>
</html>



<--Previous Next-->