Basic Tags |
|
<html></html> |
|
<head></head> |
|
<body></body> |
|
Header Tags |
|
<title></title> |
|
Body Attributes |
|
<body bgcolor=?> |
|
<body text=?> |
|
<body link=?> |
|
<body vlink=?> |
|
<body alink=?>
|
|
|
|
Text Tags |
|
<pre></pre>
|
|
<hl></hl>
|
|
<h6></h6>
|
|
<b></b>
|
|
<i></i>
|
|
<tt></tt>
|
|
<cite></cite> |
|
<em></em>
|
|
<strong></strong> |
|
<font size=?></font> |
|
<font color=?></font> |
|
Links |
|
<a href="URL"></a> |
|
<a href="mailto:jim@cit.ie">Click Here to Email Jim White</a> |
|
<a name="NAME"></a> |
|
<a href="#NAME"></a> |
|
Formatting |
|
<p></p>
|
|
<p align=?>
|
|
<br> |
|
<blockquote>
|
|
<dl></dl> |
|
<dt>
|
|
<dd>
|
|
<ol></ol>
|
|
<li></li> |
|
<ul></ul> |
|
<div align=?>
|
|
Graphical Elements |
|
<img src="name"> |
|
<img src="name" align=?> |
|
<img src="name" border=?> |
|
<hr>
|
|
<hr size=?> |
|
<hr width=?> |
|
<hr noshade> |
|
|
|
Tables |
|
<table></table> |
|
<tr></tr> |
|
<td></td> |
|
<th></th> |
|
Table Attributes |
|
<table border=#> Sets width of border around table cells |
|
<table cellspacing=#> |
|
<table cellpadding=#> |
|
<table width=# or %> |
|
<tr align=?> or <td align=?> |
|
<tr valign=?> or <td valign=?> |
|
<td colspan=#> |
|
<td rowspan=#> |
|
<td nowrap> |
|
Frames |
|
<frameset></frameset> |
|
<frameset rows="value,value"> |
|
<frameset cols="value,value"> |
|
<frame> |
|
<noframes></noframes> |
|
|
|
Frames Attributes |
|
<frame src="URL"> |
|
<frame name="name"> |
|
<frame marginwidth=#> |
|
<frame marginheight=#> |
|
<frame scrolling=VALUE> |
|
<frame noresize> |
|
Forms |
|
For functional forms, you'll have to run a CGI script. The HTML just creates the appearance of a form. |
|
<form></form> |
|
<select multiple name="NAME" size=?></select> |
|
<option> |
|
<select name="NAME"></select> |
|
<option> |
|
<textarea name="NAME" cols=40 rows=8></textarea> |
|
<input type="checkbox" name="NAME"> |
|
<input type="radio" name="NAME" value="x"> |
|
<input type=text name="foo" size=20> |
|
<input type="submit" value="NAME"> |
|
<input type="image" border=0 name="NAME" src="name.gif"> |
|
<input type="reset"> |