HTML Tags
<html> <head>...</head> <body>...</body> </html> |
HTML Structure |
|
<title>...</title> |
Document Title |
|
<body bgcolor=#XXXXXX> |
Solid Color Background |
|
<body background= "filename.gif"> |
Texture File Background |
|
<body TEXT=#XXXXXX LINK=#YYYYYY VLINK=#00HH00> |
Colored Text and Hyperlinks |
|
Text Formatting |
||
<Hn>...</Hn> <Hn align=center>...</Hn> |
Heading |
|
<b>...</b> <i>...</i> <tt>...</tt> |
Style |
|
<address>...</address> |
Address |
|
<blockquote>... </blockquote> |
Blockquote |
|
<pre>...</pre> |
Preformatted Text |
|
&xxxx; |
Special Characters |
|
<blink>...</blink> |
Blink |
|
<font size=X>... </font> |
Font Size |
|
<big>...</big> <small>...</small> |
Font Size |
|
<font color=#XXXXXX> ... </font> |
Font Color |
|
<sup>...</sup> <sub>...</sub> |
Superscript/Subscript |
|
Text Breaks / Divisions |
||
<p> |
Paragraph |
|
<br> |
Line Break |
|
<hr> <hr width=X size=X align=left|right noshade> |
Hard Rule |
|
<center>... </center> <p align=center>... </p> |
Center Alignment |
|
<div align= left|center|right> ... </div> |
Division |
|
<table border> ...</table> <table>...</table> <table border=X cellpadding=Y cellspacing=Z>... </table> <tr>...</tr> <td align=left|center|right valign=top|middle|bottom rowspan=X colspan=Y </td> |
Table |
|
Lists |
||
<ul> <ol> <li> <li> <li> <li> </ul> </ol> |
Item Lists |
|
<ul type=xxxx> <li type=xxxx> |
Bullets for Unordered Lists type=circle ; type=square; type=disc |
|
<ol type=X> <li type=X> |
Number Styles for Ordered Lists type=1 (1,2,3...); type=A (A,B,C,...); type=a (a,b,c,...); type=I (I,II,III,...) type=i (i,ii,iii,...) |
|
<ol start=i> <li value=j> |
Number Values for Ordered Lists start will begin a list with any positive number. value will renumber the list from the item and following with the new value. |
|
<dl> <dt> <dd> <dt> <dd> </dl> |
Descriptive Lists |
|
Graphics |
||
<img src="file.gif"> <img src="file.gif" alt="###" align=top|middle|bottom| left|right height=x width=y> |
Inline Image |
|
Hyper-Links |
||
<a href="file.htm"> hypertext</a> |
Local Hypertext Link |
|
URL |
Uniform Resource Locator. Address for Internet resources |
|
<a href="URL"> hypertext</a> |
Internet HyperText Link |
|
<a name="xyz"<...> |
Named Anchor. Marks a section of text within a document with name "xyz" |
|
<a href="file.htm#xyz"> hypertext</a> |
Link to Named Anchor |
|
<a href="url"> <img scr="file.gif"> border=0</a> |
Internet HyperGraphic Link |
|
<a href="mailto: "doe@xyz.edu">... </a> |
Internet Mail Link |
|
<img src="image.gif" usemap="#map_name"> <map name="map_name"> <area shape="rect" coords="x1,y1,x2,y2" HREF=URL><area shape="rect" coords="x1,y1,x2,y2" HREF=URL></map> |
Client-Side Image Map |