Basic HTML - Easy way to begin a page...

<html>
^dont forget your HTML Tag..

<title>Practice Page</title>
^theres your title

<body bgcolor = "black">
^sets your background color

<font face="verdana" size=1 color="white">
^sets your font properties for your page

</body>
</font>
</html>

^these are your closing tags
 

<html>
<title>Practice Page</title>
<body bgcolor = "black">
<font face="verdana" size=1 color="white">
</body>
</font>
</html>

^thats the finished html , to insert words and what not , just put it between <font face="verdana" size=1 color="white"> and </body>

like this 

<font face="verdana" size=1 color="white">
hey im darklord.
</body>

to make 'hey im darklord' bold , do this ...

<b>hey im darklord.</b>

to center the sentence , just do this

<center>
hey im darklord.
</center>

see? simple...

and if youd like to put spaces in between a lot of words , do this....

hey im darklord.
<br>
im bored
<br>
i like fries.


ect ect


too put images on your site , you must upload them to the server you're using , and link them like this

***this is the link to the TP2k Image

<img src="http://www.angelfire.com/extreme/tp2k/TP2k.gif">


also , to make links you must do like so

<a href="http://www.tp2kvp.cjb.net">Link Name</a>


learning the basics of html is easy , you just need to practice over and over with pages.. 


heres the finished product of what i made....

<html>
<title>Practice Page</title>
<body bgcolor = "black">
<font face="verdana" size=1 color="white">
<center>
<img src="http://www.angelfire.com/extreme/tp2k/TP2k.gif">
<br><br>
<b>hey im darklord.</b>
<br>
im bored
<br>
i like fries.
<br>
Visit my Site at : <a href="http://www.tp2kvp.cjb.net">TP2k</a>
</body>
</font>
</html>


^^^ theres a whole easy paage lol