|
Most
Common HTML Commands
|
|
<HTML>
</HTML>
|
Starts and stops
an HTML page
|
|
<HEAD>
</HEAD>
|
Just like header,
shows top of page
|
|
<TITLE>
</TITLE>
|
Official title
of page, shows at top of browser
|
|
<BODY>
</BODY>
|
Main part of
page, can go for many pages
|
|
<H1> </H1>,
<H6> </H6>
|
First through
sixth level heading
|
|
<P> </P>
|
Paragraph mark,
makes a carriage return
|
|
<BR> </BR>
|
Line break,
same paragraph
|
|
<B> </B>,
<I> </I>, <U> </U>
|
Bold, Italic,
Underline
|
|
<EM> </EM>,
<STRONG> </STRONG>
|
Emphasis, Strong
Emphasis
|
|
<HR> </HR>
|
Horizontal Rule,
puts a line across page
|
|
<ADDRESS>
</ADDRESS>
|
Address tag,
usually displayed in italics with separate lines
|
|
<TT></TT>
|
Equal-width
text (as made by a typewriter)
|
|
<OL></OL>
|
Start, end numbered
list
|
|
<LI>
|
Numbered list
item (dont type the number)
|
|
<UL></UL>
|
Start, end bulleted
list
|
|
<LI>
|
Bulleted list
item
|
|
<DL></DL>
|
Start, end definition
list
|
|
<DT>
|
Definition term
|
|
<DD>
|
Definition
|
[Top]
|