HTML Basics
Now that you know what kind of page you want to create we can move to the next step Here I will teach you how to create the page itself.
For this you will just need to use HTML. What is it? HTML stands for "hypertext mark-up language." This is the only thing necessary to create a standard webpage. It is the skeleton that will hold everything together. The pretty stuff comes later - hint, hint CSS.
You will also need a wordprocessor. I would recommend Text Wrangler if you are a Mac user (I have a Mac and have found that this works wonderfully for me) and Notepad ++ if you are a Windows user.
In the wordprocessor of your choice you will input:
This will be your webpage, although right now it is blank. You will always need to input the above to create one. The things that inclose each tag (ex:<>) are called brakets, keep in mind that you will need to make sure they every time you use most tags that you need to close them with a slash(ex:/) as shown above.
Now, within this html code you will be creating what will be seen on the site. You will be able to do so with tags like:
= heading tag - this goes from h1 to h6 each on progressively smaller than the next
= paragraph tag
A Few Helpful Websites:
Now that you've got the basics of HTML down we can move on to CSS Basics.