HTML Simple Reference
I picked up some Tags in HTML 3.0. This document is not complete, but handy.
This reference haven't Tags of Frame and Image Map at this moment. m(_
_)m
<A> <B> <BODY>
<BR> <DD> <DL>
<DT> <EM> <FONT>
<H1> <H2> <H3>
<H4> <H5> <H6>
<HEAD> <HR> <HTML>
<IMG> <LI> <OL>
<P> <PRE> <STRONG>
<TABLE> <TD> <TH>
<TR> <UL>
Uchidas | News
| Family | Yasuo
| Michiko | Miho
| Yuuta | Ai
| Japan | Guestbook
- <A>...</A>
This stands for Anchor. This is a mark for link with underscore.
usage
<A HREF="http://www.uchidas.com">link to www.uchidas.com</A>
<A HREF="../index.html">return to the top page in parent's
directory</A>
<A HREF="file:///c|/uchida/homepage/index.html">My HomePage(local
file)</A>
<A HREF="mailto:yasuo@uchidas.com">Please send mail to
me</A>
<A HREF="name">Jump to name</A>
<A NAME="#name">name</A>
- <B>...</B>
This stands for Bold.
usage
<B>Bold</B>
- <BODY>...</BODY>
This stands for the body of HTML document.
usage
<BODY>
You can write here the contents of web page.
</BODY>
- <BR>
This stands for BReak the line.
usage
This is 1st line.<BR>
This is 2nd line.<BR>
- <DD...</DD>
This stands for Definition Definition.
usage
<DL>
<DT>a definition term</DT>
<DD>a definition definition</DD>
</DL>
- <DL>...</DL>
This stands for Definition Lists.
usage
<DL>
<DT>a definition term</DT>
<DD>a definition definition</DD>
</DL>
- <DT>...</DT>
This stands for Definition Term.
usage
<DL>
<DT>a definition term</DT>
<DD>a definition definition</DD>
</DL>
- <EM>...</EM>
This stands for EMphasis. Typically displayed in italics.
usage
<EM>a emphasis stings</EM>
- <FONT>...</FONT>
This stands for atrributes of FONT.
usage
<FONT SIZE="6">FONT SIZE 6</FONT>
<FONT COLOR="#ff0000">red</FONT>
- <H1>...</H1>
This stands for Heading in level 1. This inserts empty lines before and
after.
usage
<H1>Heading in level 1</H1>
- <H2>...</H2>
This stands for Heading in level 2. This inserts empty lines before and
after.
usage
<H2>Heading in level 2</H2>
- <H3>...</H3>
This stands for Heading in level 3. This inserts empty lines before and
after.
usage
<H3>Heading in level 3</H3>
- <H4>...</H4>
This stands for Heading in level 4. This inserts empty lines before and
after.
usage
<H4>Heading in level 4</H4>
- <H5>...</H5>
This stands for Heading in level 5. This inserts empty lines before and
after.
usage
<H5>Heading in level 5</H5>
- <H6>...</H6>
This stands for Heading in level 6. This inserts empty lines before and
after.
usage
<H6>Heading in level 6</H6>
- <HEAD>...</HEAD>
This stands for HEADing of HTML document.
usage
<HEAD>
<TITLE>
The browser display the title of this title.
</TITLE>
</HEAD>
- <HR>
This stands for Horizontal Rule.
usage
<HR>
<HR WIDTH="80%">
- <HTML>...</HTML>
This stands for HTML document.
usage
<HTML>
<HEAD>
<TITLE>My Home Page</TITLE>
</HEAD>
<BODY>
The contents of Home Page.
</BODY>
</HTML>
- <IMG>
This stands for IMaGe.
usage
<IMG SRC="test.gif">
<IMG SRC="image.jpg" ALIGN="MIDDLE" >
- <LI>...</LI>
- This stands for LIsts.
usage
<UL>
<LI>This is 1st list</LI>
<LI>This is 2nd list</LI>
</UL>
- <OL>...</OL>
This stands for Ordered(Numbered) Lists.
usage
<OL>
<LI>This is 1st list</LI>
<LI>This is 2nd list</LI>
</OL>
- <P>...</P>
This stands for Paragraph. The <P> tag inserts a empty line before.
usage
<P>This is 1st paragraph</P>
<P>This is 2nd paragraph</P>
- <PRE>...</PRE>
This stands for PREformatted, which display in source format.
usage
<PRE>
abc
def
ghi
</PRE>
- <STRONG>...</STRONG>
This stands for STRONG. Typically displayed in bold.
usage
<STRONG>a strong stings</STRONG>
- <TABLE>...</TABLE>
This stands for TABLE.
usage
<TABLE BORDER="1" CELLPADDING="10">
<TR>
<TD>1st row 1st column</TD><TD>1st row 2nd column</TD><TD>1st
row 3rd column</TD>
</TR>
</TR>
<TD>2nd row 1st column</TD><TD>2nd row 2nd column</TD><TD>2nd
row 3rd column</TD>
</TABLE>
- <TD>...</TD>
This stands for Table Data.
usage
<TABLE BORDER="1" CELLPADDING="10">
<TR>
<TD>1st row 1st column</TD><TD>1st row 2nd column</TD><TD>1st
row 3rd column</TD>
</TR>
</TR>
<TD>2nd row 1st column</TD><TD>2nd row 2nd column</TD><TD>2nd
row 3rd column</TD>
</TABLE>
- <TH>...</TH>
This stands for Table Header.
<TABLE BORDER>
<TR>
<TH>header 1</TH><TH>header 2</TH><TH>header
3</TH>
</TR>
</TR>
<TD>1st row 1st column</TD><TD>1st row 2nd column</TD><TD>1st
row 3rd column</TD>
</TABLE>
- <TR>..</TR>
This stands for Table Row.
usage
<TABLE BORDER="1" CELLPADDING="10">
<TR>
<TD>1st row 1st column</TD><TD>1st row 2nd column</TD><TD>1st
row 3rd column</TD>
</TR>
</TR>
<TD>2nd row 1st column</TD><TD>2nd row 2nd column</TD><TD>2nd
row 3rd column</TD>
</TABLE>
- <UL>...</UL>
This stands for Unordered(Unumbered) Lists.
usage
<UL>
<LI>This is 1st list</LI>
<LI>This is 2nd list</LI>
</UL>
(since Sep 22, 1996)
E-mail yasuo@uchidas.com
Copyright (c) 1996 Yasuo Uchida