HTML
Quick Reference
There
are hundreds of other tags used to format and layout the information
in a Web page. Here's a Quick HTML Reference.
<HTML...</HTML>
|
Identifies
document type as HTML
|
<HEAD>...</HEAD>
|
Encloses
document header
|
<TITLE>...</TIELE>
|
Specifies
document title
|
<!--
-->
|
Specifies
comments (not displayed in browser)
|
<BODY>...</BODY>
|
Encloses
body of HTML document
|
<H1>...</H1>
|
Level-one
heading
|
<H2>...</H2>
|
Level-two
heading
|
<H3>...</H3>
|
Level-three
heading
|
<H4>...</H4>
|
Level-four
heading
|
<H5>...</H5>
|
Level-five
heading
|
<H6>...</H6>
|
Level-six
heading
|
<BR>
|
Creates
line break without white space
|
<P>
|
Creates
line break with white space
|
<PRE>...</PRE>
|
Creates
preformatted text while preserving spacing
|
<BLOCK>...</BLOCK>
|
Indents
text; useful for quotes and citations
|
<B>...</B>
|
Creates
boldface text
|
<I>...</I>
|
Creates
italic text
|
<STRIKE>...</STRIKE>
|
Strikes
text (draws a line through the text)
|
<LI>
|
List
element used in ordered and unordered list
|
<UL>...</UL>
|
Creates
unordered (bulleted) lists
|
<OL>...</OL>
|
Creates
ordered (numbered) lists
|
<HR>
|
Creates
horizontally ruled lines on a Web page
|
<IMG
SRC="file">
|
Inserts
image in documents |
<A>...</A>
|
Anchor
tag used with HREF and NAME to create hypertext links
|
<FORM>...</FORM>
|
Creates
an HTML form
|
<INPUT>...</INPUT>
|
Defines
input fields used in forms
|
<TABLE>...</TABLE>
|
Creates
an HTML table
|
<CAPTION>..<.CAPTION>
|
Creates
a table caption
|
<ADDRESS>...</ADDRESS>
|
Used
for document footer (such as author's e-mail address or URL)
|
<DIR>...</DIR>
|
Directory
list, used for lists with items that have short names
|
<CITE>...</CITE>
|
Citation
style, used for citing other works or titles
|
<EM>...</EM>
|
Emphasis,
typically seen as italic
|
<STRONG>...</STRONG>
|
Strong
emphasis, typically viewed as bold
|
<SAMPLE>...</SAMPLE>
|
Sample
style, used for examples
|
|
<TT>...</TT>
|
Typewriter
text style using Teletype font
|
HTML
Resources
W3schools.com
HTML Tutorial for Beginners: Learn
by 100 examples! from Basic to Advanced.
davesite.com: For
anyone who is serious about learning HTML.
PageTutor.com: All
sorts of HTML tutorials, learn from scratch.
EchoEcho.com: HTML
tutorial basics, links, and forms with easy to understand explanations.
htmlhelp.com: Web
Authoring Reference, with all your HTML tools.
«« Previous »»
|