Before structuring your first Web page type this into your text editor (the file is first.html from the previous page):
Hello
Hello everyone this is my first Web page. Above is a title and this is a paragraph of text.
This is another paragraph.
Save the file.
The next thing to learn is how that is the wrong way to type a web page! Go to the file and double click on it to open it in your Web browser (or go to the Web browser which already shows the original version of the page and press F5 to re-load the page).
You should find that the text is all on one line. This is because Web browsers ignore any extra spaces, carriage returns or tabs in the text. To add structure you need to change your file so it looks like this (the only changes are the tags marked by < and > symbols):
<h1>Hello</h1>
<p>Hello everyone this is my first Web page. Above is a title and this is a paragraph of text.</p>
<p>This is another paragraph.</p>
Save it and load it in your browser. The new tags identify the parts of the document to your browser.



