back to step 4
Step 5 - Learn how add pages and links.
First of all to add a page copy and paste the code in step 1 into a new document or if you want your pages to look simalar copy and paste the page you've already made into a document and change a few things to make it a different page and save that as something you'll remeber such aboutme.html if its a page about you but what ever you call your page don't call it index.html you already have that and remember to put .html at the end of the name.

To go from one page to the other you'll need links to make a link just copy and paste this code to wherever you want the link to be on you page.
<a href="URL">TEXT HERE</a> Instead of url put the url for example aboutme.html if there aren't in the same folder it would me somthing like "folder/aboutme.html" and instead of TEXT HERE put what you want to click on to go to the new page.

If you want to link to a different site its very important that you put http:// then the url, just putting www. wont work.

If you want the link to open up in a new window use this <a href="URL" target="_blank">TEXT HERE</a> Change the things you did in a normal link in the same, nothing else needs changing.

on to step 6...