how to make a webpage


html tags
html is a markup language used to make web pages. it's really easy to use: simply type the text you want on your page and use tags to format that text. tags are html commands that are between <brackets>. here is a list of tags and what they do: <b> :bold
<u> :underline <i> :italic <big> :big <small> :small <p> :

paragraph

<font size=3 color=red> :change stuff about the font


most tags are stopped simply by putting a / before the same command at the end of whatever is to be tagged. example:

this is red text and this is bold text.

and it looks like this in raw html code:

this is <font color=red>red</font> text and this is