-:] <html> ... </html>
The HTML tag is used to simply signifies that the document will be using HTML language. Everything in between the opening HTML tag [<html>] and the closing HTML tag [</html>] will be HTML.


-:] <head> ... </head>
The head tag encloses the commands to be sent to the browser first. Some things that go inside the head tag are your title and the meta data you have, as well as all CSS Style Sheets information. Everything from the the opening Head tag [<head>] and the closing HEAD tag [</head>] will be loaded first.


-:] <title> ... </title>
The title tag surrounds the text to appear at the top bar of the browser. If you look to the top of the browser, you will see "*Xplicit-HTML* [dot] net" this is the title of this web page.



-:] Spacing:
&nbsp; using that simple code, you can create a space.
ex: word word. there is only one space between the two words, to add more add more &nbsp;
ex: word       word, with 5 &nbsp;,
ex: word                      word. with 20 &nbsp;


-:] Line Breaks:
By adding a <br>, you can create a line break.
ex:
Word
Word , one line break [<br>]
ex:
word


word , 3 line breaks [<br><br><br>]


By adding a <p>, you can create a double line break.
ex:
Word
Word , one line break [<br>]
ex:
word

word , with a <p> [<p> is the same as <br><br> {2 <br>} ]


-:] Indenting:
By adding a <dd>, in front of text, you can indent a line.
ex:
This is a sentence with no indent.
ex:

This is a sentence with an indent.


-:] Horizontal Line:
By using a <hr>, you can create a horizontal line. [it will extend to the ends of both sides]



To change the width of the <hr>, add this: <hr width=65%>



To make it thicker add use this: <hr width=65% size=15>

To add color use this: <hr width=65% size=15 color="990000">




To have No Shade: <hr noshade>




-:] Align:
If you want to align something use these codes: [align="left" align="center" align="right"]

<p align="left">word</p>


<p align="center">word</p>


<p align="right">word</p>


You can aslo use <center> to center something:
<center>word</center>



-:] quick font codes
bold = <b> WORD </b>
italic = <i> WORD </i>
underline = <u> WORD </u>
Slashout = <s> WORD </s>
SuperScript = <sup> WORD </sup>
SubScript = <sub> WORD </sub>
Typewriter = <tt> WORD </tt>