HTML is easy to learn. Follow the simple steps below and in a few minutes you will have made your first HTML file. No special software is required, just the plain text editor already on your computer.
To make a HTML file:
On a PC this is called Notepad.
Click Start >Programs >Accessories >Notepad
On a Mac it is called TextEdit.
Find in Applications folder, or search in Spotlight - (click magnifying glass in top RH corner of desktop)
<html>
<p>P is for paragraph.</p>
</html>
Save as 'myfirstwebpage.html'.
The .html ending is important.
It should open in your web browser:

• File must be saved with .html extension, not .txt
• It should be written in plain, unformatted text, unicode (UTF-8)
• Make sure <brackets> and </slashes> all in place
Well done!! This is your first page and the starting point of all websites.
<html>
<h1>h is for heading. h1 is the main heading.</h1>
<h2>h2 is a secondary heading.</h2>
<p>p is for paragraph,<q>q is for quote</q> she said with <em>emphasis</em></p>
</html>

Hopefully you are beginning to see how HTML is written, and your inner geek is starting to awaken..
From here, you can go to:
Learn about tags, elements, page structure, page Layout, stuff your browser needs, how to look at other sites code and a very basic introduction to adding styles.
Try out the most common tags and learn how to add an image or link to your web page.
Ideas and reviews of online resources, good books and software to take your learning to the next step.
About this site.