Page Tags
This may seem like common knowlegde, but this tutorial is for all the people who have just discovered the ability of making websites. 'nuff said
Now, first off you need to add this to your page before you add anything else. Between those will obviously be all the html you put.
Between those you will now add. The body tags so it looks like this.
Now the body tags are where all the main content for your page are supposed to go. Your text, what fonts you want to use, the colors ect.
Above the first body tag and under the first html tag you put the head sections. These tags are home for css codes that take place on the whole page such as scroll bar colors and link colors/styles and so on. This is also where some java script codes start, but they will usually tell you if they belong in the head section or not. This is also where you can name your page. Just add in <*title>YOUR NAME HERE<*/title> without the *.
Tada! All done. Now just memorize this (it ain't that hard) and begin starting your pages!
Note:Always add in to the ending tags /.i.e. (beginning tag)(ending tag)
<--Back Up