| Basic Tags |
<html></html>
Begins and ends any HTM or HTML page. |
<head></head>
Sets off the information that isn't displayed on the Web page but used by
serach engines javascript and the like |
<body></body>
Sets off the visible portion of the document |
| Header Tags |
<title></title>
Puts the name of the document in the title bar |
| Body Attributes |
<body
bgcolor="#ffffff">
Sets the background color, using a hex value (see
the values here) |
<body
text="#ffffff">
Sets the text color, using hex value |
<body
link="#ffffff">
Sets the color of links, using hex value |
<body
vlink="#ffffff">
Sets the color of already visited links, using hex value |
<body
alink="#ffffff">
Sets the color of available links |
| Text Tags |
<hl></hl>
Creates the largest headline |
<h3></h3>
Creates a medium headline |
<h6></h6>
Creates the smallest headline |
<b></b>
Creates bold text |
<i></i>
Creates italic text |
<em></em>
Emphasizes a word (with italic or bold) |
<strong></strong>
Emphasizes a word (with italic or bold) |
| <font
size=?></font> |
<font
color="#ffffff"></font>
Sets font color, using hex value but only of the text between the
two tags |
| Links |
<a
href="http://www.maynardville.com"> Click
Here</a>
Creates a hyperlink to Maynardville.com that displays "Click Here"
on the page |
<a
href="mailto:test@test.com">email
test</a>
Creates an email link that displays on the page as "email test" and when
clicked on will address an email to test@test.com |
| Formatting |
<p></p>
Creates a new paragraph |
<p
align=center>
Aligns a paragraph to the center. can change center to left or right
also. |
<br>
Inserts a single space line break |
<blockquote>
</blockquote>
Indents text from both sides |
| Graphical Elements |
<img
src="test.jpg">
Adds an image that it finds in the same directory called test.jpg |
<img src="test.jpg"
align=center>
Aligns the test.jpg grapphic in the center of the page. |
<img src="name"
border=0>
Sets size of border around an image should usually be set to 0 and
never above 2 |
<hr>
Inserts a horizontal dividing line |
<hr
size=10>
Sets height of horizontal dividing line example shown is 10 pixels high |
<hr
width=100>
Sets width of horizontal dividing line example shown is 100 pixels wide |
<hr
noshade>
Creates a horizontal dividing line without a shadow |