Archive Pages Design$type=blogging

HTML Tag Chart

Tag
Name
Code Example
Result
<!-- comment <!--This can be viewed in the HTML part of a document--> Nothing will show (Tip)
<A - anchor <A HREF="http://www.yourdomain.com/">Visit Our Site</A> Visit Our Site (Tip)
<B> bold <B>Example</B> Example
<BIG> big (text) <BIG>Example</BIG> Example (Tip)
<BODY> body of HTML document <BODY>The content of your HTML page</BODY> Contents of your web page (Tip)
<BR> line break The contents of your page<BR>The contents of your page The contents of your web page
The contents of your web page
<CENTER> center <CENTER>This will center your contents</CENTER>
This will center your contents
<DD> definition description <DL>
<DT>Definition Term
<DD>Definition of the term
<DT>Definition Term
<DD>Definition of the term
</DL>
Definition Term
Definition of the term
Definition Term
Definition of the term
<DL> definition list <DL>
<DT>Definition Term
<DD>Definition of the term
<DT>Definition Term
<DD>Definition of the term
</DL>
Definition Term
Definition of the term
Definition Term
Definition of the term
<DT> definition term <DL>
<DT>Definition Term
<DD>Definition of the term
<DT>Definition Term
<DD>Definition of the term
</DL>
Definition Term
Definition of the term
Definition Term
Definition of the term
<EM> emphasis This is an <EM>Example</EM> of using the emphasis tag This is an Example of using the emphasis tag
<EMBED>
embed object <EMBED src="yourfile.mid" width="100%" height="60" align="center">
(Tip)
<EMBED> embed object <EMBED src="yourfile.mid" autostart="true" hidden="false" loop="false">
<noembed><bgsound src="yourfile.mid" loop="1"></noembed>

&amp;lt;bgsound src="wonderfu.mid" autostart="false" loop="1"&amp;gt;
Music will begin playing when your page is loaded and will only play one time. A control panel will be displayed to enable your visitors to stop the music.
<FONT> font <FONT FACE="Times New Roman">Example</FONT> Example (Tip)
<FONT> font <FONT FACE="Times New Roman" SIZE="4">Example</FONT> Example (Tip)
<FONT> font <FONT FACE="Times New Roman" SIZE="+3" COLOR="#FF0000">Example</FONT> Example (Tip)
<FORM> form <FORM action="mailto:you@yourdomain.com">
Name: <INPUT name="Name" value="" size="10"><BR>
Email: <INPUT name="Email" value="" size="10"><BR>
<CENTER><INPUT type="submit"></CENTER>
</FORM>
Name: (Tip)
Email:
<H1> heading 1 <H1>Heading 1 Example</H1>

Heading 1 Example

<H2> heading 2 <H2>Heading 2 Example</H2>

Heading 2 Example

<H3> heading 3 <H3>Heading 3 Example</H3>

Heading 3 Example

<H4> heading 4 <H4>Heading 4 Example</H4>

Heading 4 Example

<H5> heading 5 <H5>Heading 5 Example</H5>
Heading 5 Example
<H6> heading 6 <H6>Heading 6 Example</H6>
Heading 6 Example
<HEAD> heading of HTML document <HEAD>Contains elements describing the document</HEAD> Nothing will show
<HR> horizontal rule <HR>
Contents of your web page (Tip)

Contents of your web page
<HR> horizontal rule <HR WIDTH="50%" SIZE="3"> Contents of your web page

Contents of your web page
<HR> horizontal rule <HR WIDTH="50%" SIZE="3" NOSHADE> Contents of your web page

Contents of your web page
<HR>
(Internet
Explorer)
horizontal rule <HR WIDTH="75%" COLOR="#FF0000" SIZE="4"> Contents of your web page

Contents of your web page
<HR>
(Internet
Explorer)
horizontal rule <HR WIDTH="25%" COLOR="#6699FF" SIZE="6"> Contents of your web page

Contents of your web page
<HTML> hypertext markup language <HTML><HEAD><META><TITLE>Title of your web page</TITLE></HEAD><BODY>HTML web page contents</BODY></HTML> Contents of your web page
<I> italic <I>Example</I> Example
<IMG> image <IMG SRC="Cybup.jpg" WIDTH="41" HEIGHT="41" BORDER="0" ALT="text describing the image"> a sentence about your site (Tip)
<INPUT> input field Example 1:

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
<INPUT type="text" size="10" maxlength="30">
<INPUT type="Submit" VALUE="Submit">
</FORM>
Example 1: (Tip)

<INPUT>
(Internet Explorer)
input field Example 2:

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
<INPUT type="text" STYLE="color: #FFFFFF; font-family: Verdana; font-weight: bold; font-size: 12px; background-color: #72A4D2;" size="10" maxlength="30">
<INPUT type="Submit" VALUE="Submit">
</FORM>
Example 2: (Tip)

<INPUT> input field Example 3:

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="2"><TR><TD BGCOLOR="#8463FF"><INPUT type="text" size="10" MAXLENGTH="30"></TD><TD BGCOLOR="#8463FF" VALIGN="Middle"> <INPUT type="image" name="submit" src="yourimage.gif"></TD></TR> </TABLE>
</FORM>
Example 3: (Tip)

<INPUT> input field Example 4:

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
Enter Your Comments:<BR>
<TEXTAREA wrap="virtual" name="Comments" rows=3 cols=20 MAXLENGTH=100></TEXTAREA><BR>
<INPUT type="Submit" VALUE="Submit">
<INPUT type="Reset" VALUE="Clear">
</FORM>
Example 4: (Tip)


<INPUT> input field Example 5:

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
<CENTER>
Select an option:
<SELECT>
<OPTION >option 1
<OPTION SELECTED>option 2
<OPTION>option 3
<OPTION>option 4
<OPTION>option 5
<OPTION>option 6
</SELECT><BR>
<INPUT type="Submit" VALUE="Submit"></CENTER>
</FORM>
Example 5: (Tip)

Select an option:
<INPUT> input field Example 6:

<FORM METHOD=post ACTION="/cgi-bin/example.cgi">
Select an option:<BR>
<INPUT type="radio" name="option"> Option 1
<INPUT type="radio" name="option" CHECKED> Option 2
<INPUT type="radio" name="option"> Option 3
<BR>
<BR>
Select an option:<BR>
<INPUT type="checkbox" name="selection"> Selection 1
<INPUT type="checkbox" name="selection" CHECKED> Selection 2
<INPUT type="checkbox" name="selection"> Selection 3
<INPUT type="Submit" VALUE="Submit">
</FORM>
Example 6: (Tip)

Select an option:
Option 1
Option 2
Option 3

Select an option:
Selection 1
Selection 2
Selection 3
<LI> list item Example 1:

<MENU>
<LI type="disc">List item 1
<LI type="circle">List item 2
<LI type="square">List item 3
</MENU>


Example 2:

<OL type="i">
<LI>List item 1
<LI>List item 2
<LI>List item 3
<LI>List item 4
</OL>
Example 1: (Tip)
  • List item 1
  • List item 2
  • List item 3

Example 2:

  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
<LINK> link Visit our <A HREF="http://www.yourdomain.com/">site</A> Visit our site
<MARQUEE>
(Internet
Explorer)
scrolling text <MARQUEE bgcolor="#CCCCCC" loop="-1" scrollamount="2" width="100%">Example Marquee</MARQUEE> Example Marquee (Tip)
<MENU> menu <MENU>
<LI type="disc">List item 1
<LI type="circle">List item 2
<LI type="square">List item 3
</MENU>
  • List item 1
  • List item 2
  • List item 3
<META> meta <META name="Description" content="Description of your site">
<META name="keywords" content="keywords describing your site">
Nothing will show (Tip)
<META> meta <META HTTP-EQUIV="Refresh" CONTENT="4;URL=http://www.yourdomain.com/"> Nothing will show (Tip)
<META> meta <META http-equiv="Pragma" content="no-cache"> Nothing will show (Tip)
<META> meta <META name="rating" content="General"> Nothing will show (Tip)
<META> meta <META name="ROBOTS" content="ALL"> Nothing will show (Tip)
<META> meta <META NAME="ROBOTS" content="NOINDEX,FOLLOW"> Nothing will show (Tip)
<OL> ordered list Numbered

<OL>
<LI>List item 1
<LI>List item 2
<LI>List item 3
<LI>List item 4
</OL>


Numbered Special Start

<OL start="5">
<LI>List item 1
<LI>List item 2
<LI>List item 3
<LI>List item 4
</OL>


Lowercase Letters <OL type="a">
<LI>List item 1
<LI>List item 2
<LI>List item 3
<LI>List item 4
</OL>

Capital Letters

<OL type="A">
<LI>List item 1
<LI>List item 2
<LI>List item 3
<LI>List item 4
</OL>

Capital Letters Special Start

<OL type="A" start="3">
<LI>List item 1
<LI>List item 2
<LI>List item 3
<LI>List item 4
</OL>

Lowercase Roman Numerals

<OL type="i">
<LI>List item 1
<LI>List item 2
<LI>List item 3
<LI>List item 4
</OL>

Capital Roman Numerals

<OL type="I">
<LI>List item 1
<LI>List item 2
<LI>List item 3
<LI>List item 4
</OL>


Capital Roman Numerals Special Start
<OL type="I" start="7">
<LI>List item 1
<LI>List item 2
<LI>List item 3
<LI>List item 4
</OL>
Numbered
  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
Numbered Special Start

  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
Lowercase Letters

  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
Capital Letters

  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
Capital Letters Special Start

  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
Lowercase Roman Numerals

  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
Capital Roman Numerals

  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
Capital Roman Numerals Special Start

  1. List item 1
  2. List item 2
  3. List item 3
  4. List item 4
<OPTION> listbox option <FORM METHOD=post ACTION="/cgi-bin/example.cgi">
<CENTER>
Select an option:
<SELECT>
<OPTION>option 1
<OPTION SELECTED>option 2
<OPTION>option 3
<OPTION>option 4
<OPTION>option 5
<OPTION>option 6
</SELECT><BR>
</CENTER>
</FORM>
Select an option: (Tip)

<P> paragraph This is an example displaying the use of the paragraph tag. <P> This will create a line break and a space between lines.

Attributes:

Example 1:<BR>
<BR>
<P align="left">
This is an example<BR>
displaying the use<BR>
of the paragraph tag.<BR>
<BR>
Example 2:<BR>
<BR>
<P align="right">
This is an example<BR>
displaying the use<BR>
of the paragraph tag.<BR>
<BR>
Example 3:<BR>
<BR>
<P align="center">
This is an example<BR>
displaying the use<BR>
of the paragraph tag.
This is an example displaying the use of the paragraph tag.
This will create a line break and a space between lines.

Attributes:

Example 1:

This is an example
displaying the use
of the paragraph tag.


Example 2:

This is an example
displaying the use
of the paragraph tag.
Example 3:

This is an example
displaying the use
of the paragraph tag.
<SMALL> small (text) <SMALL>Example</SMALL> Example (Tip)
<STRONG> strong emphasis <STRONG>Example</STRONG> Example
<TABLE> table Example 1:

<TABLE BORDER="4" CELLPADDING="2"  CELLSPACING="2" WIDTH="100%">
<TR>
<TD>Column 1</TD>
<TD>Column 2</TD>
</TR>
</TABLE>

Example 2: (Internet Explorer)

<TABLE BORDER="2" BORDERCOLOR="#336699" CELLPADDING="2" CELLSPACING="2" WIDTH="100%">
<TR>
<TD>Column 1</TD>
<TD>Column 2</TD>
</TR>
</TABLE>

Example 3:

<TABLE CELLPADDING="2" CELLSPACING="2" WIDTH="100%">
<TR>
<TD BGCOLOR="#CCCCCC">Column 1</TD>
<TD BGCOLOR="#CCCCCC">Column 2</TD>
</TR>
<TR>
<TD>Row 2</TD>
<TD>Row 2</TD>
</TR>
</TABLE>
Example 1: (Tip)
Column 1 Column 2

Example 2: (Tip)

Column 1 Column 2


Example 3: (Tip)

Column 1 Column 2
Row 2 Row 2
<TD> table data <TABLE BORDER="2" CELLPADDING="2" CELLSPACING="2" WIDTH="100%">
<TR>
<TD>Column 1</TD>
<TD>Column 2</TD>

</TR>
</TABLE>

Column 1 Column 2
<TH> table header <DIV align="center"><TABLE>
<TR>
<TH>Column 1</TH>
<TH>Column 2</TH>
<TH>Column 3</TH>

</TR>
<TR>
<TD>Row 2</TD>
<TD>Row 2</TD>
<TD>Row 2</TD>
</TR>
<TR>
<TD>Row 3</TD>
<TD>Row 3</TD>
<TD>Row 3</TD>
</TR>
<TR>
<TD>Row 4</TD>
<TD>Row 4</TD>
<TD>Row 4</TD>
</TR>
</TABLE>
</DIV>
Column 1 Column 2 Column 3
Row 2 Row 2 Row 2
Row 3 Row 3 Row 3
Row 4 Row 4 Row 4
<TITLE> document title <TITLE>Title of your HTML page</TITLE> Title of your web page will be viewable in the title bar. (Tip)
<TR> table row <TABLE BORDER="2" CELLPADDING="2" CELLSPACING="2" WIDTH="100%">
<TR>
<TD>Column 1</TD>
<TD>Column 2</TD>
</TR>
</TABLE>

Column 1 Column 2

<TT> teletype <TT>Example</TT> Example
<U> underline <U>Example</U> Example
<UL> unordered list Example 1:<BR>
<BR>
<UL>
<LI>List item 1
<LI>List item 2
</UL>
<BR>
Example 2:<BR>
<UL type="disc">
<LI>List item 1
<LI>List item 2
<UL type="circle">
<LI>List item 3
<LI>List item 4
</UL>
</UL>
Example 1:

  • List item 1
  • List item 2

Example 2:

  • List item 1
  • List item 2
    • List item 3
    • List item 4


More Special Characters

Character HTML Character Code Description Character HTML Code Character Code Description
&#09; horizontal tab &#145; left curly quote mark
&#10; line feed &#146; right curly quote mark/apostrophe
&#13; carriage return &#147; left curly quote marks
&#32; space &#148; right curly quote marks
! &#33; exclamation point &#149; bullet
" &#34; &quot; straight quote marks &#150; “en” (short) dash
# &#35; hash mark/number sign &#151; “em” (long) dash
$ &#36; dollar sign ˜ &#152; tilde
% &#37; percent sign &#153; trademark
& &#38; &amp; ampersand š &#154;
' &#39; straight quote mark/apostrophe &#155;
( &#40; left parenthesis œ &#156; small oe ligature
) &#41; right parenthesis Ÿ &#159; capital Y, umlaut
* &#42; asterisk &#160; &nbsp; non-breaking space
+ &#43; plus sign ¡ &#161; &iexcl; inverted exclamation point
, &#44; comma ¢ &#162; &cent; cent sign
- &#45; hyphen £ &#163; &pound; pound sterling sign
. &#46; period/dot ¤ &#164; &curren; general currency sign
/ &#47; slash ¥ &#165; &yen; yen sign
0 &#48; zero ¦ &#166; &brvbar; broken vertical bar
&brkbar;
1 &#49; one § &#167; &sect; section sign
2 &#50; two ¨ &#168; &uml; umlaut/dieresis
&die;
3 &#51; three © &#169; &copy; copyright symbol
4 &#52; four ª &#170; &ordf; feminine ordinal
5 &#53; five « &#171; &laquo; left angle quote marks
6 &#54; six ¬ &#172; &not; not sign
7 &#55; seven ­ &#173; &shy; soft hyphen
8 &#56; eight ® &#174; &reg; registered symbol
9 &#57; nine ¯ &#175; &macr; macron accent
&hibar;
: &#58; colon ° &#176; &deg; degree sign
; &#59; semi-colon ± &#177; &plusmn; plus or minus
< &#60; &lt; less than sign ² &#178; &sup2; superscript 2
= &#61; equals sign ³ &#179; &sup3; superscript 3
> &#62; &gt; greater than sign ´ &#180; &acute; acute accent
? &#63; question mark µ &#181; &micro; micro sign (Greek mu)
@ &#64; commercial “at” sign &#182; &para; paragraph sign
A &#65; capital A · &#183; &middot; middle dot
B &#66; capital B ¸ &#184; &cedil; cedilla
C &#67; capital C ¹ &#185; &sup1; superscript 1
D &#68; capital D º &#186; &ordm; masculine ordinal
E &#69; capital E » &#187; &raquo; right angle quote marks
F &#70; capital F ¼ &#188; &frac14; fraction one-fourth
G &#71; capital G ½ &#189; &frac12; fraction one-half
H &#72; capital H ¾ &#190; &frac34; fraction three-fourths
I &#73; capital I ¿ &#191; &iquest; inverted question mark
J &#74; capital J À &#192; &Agrave; capital A, grave accent
K &#75; capital K Á &#193; &Aacute; capital A, acute accent
L &#76; capital L Â &#194; &Acirc; capital A, circumflex accent
M &#77; capital M Ã &#195; &Atilde; capital A, tilde
N &#78; capital N Ä &#196; &Auml; capital A, umlaut/dieresis
O &#79; capital O Å &#197; &Aring; capital A, ring
P &#80; capital P Æ &#198; &Aelig; capital AE ligature, dipthong
Q &#81; capital Q Ç &#199; &Ccedil; capital C, cedilla
R &#82; capital R È &#200; &Egrave; capital E, grave accent
S &#83; capital S É &#201; &Eacute; capital E, acute accent
T &#84; capital T Ê &#202; &Ecicr; capital E, circumflex accent
U &#85; capital U Ë &#203; &Euml; capital E, umlaut/dieresis
V &#86; capital V Ì &#204; &Igrave; capital I, grave accent
W &#87; capital W Í &#205; &Iacute; capital I, acute accent
X &#88; capital X Î &#206; &Icirc; capital I, circumflex accent
Y &#89; capital Y Ï &#207; &Iuml; capital I, umlaut/dieresis mark
Z &#90; capital Z Ð &#208; &ETH; capital Eth, Icelandic
&Dstrok;
[ &#91; left square bracket Ñ &#209; &Ntilde; capital N, tilde
\ &#92; backslash Ò &#210; &Ograve; capital O, grave accent/null set
] &#93; right square bracket Ó &#211; &Oacute; capital O, acute accent
^ &#94; caret Ô &#212; &Ocirc; capital O, circumflex accent
_ &#95; underscore bar Õ &#213; &Otilde; capital O, tilde
` &#96; grave accent Ö &#214; &Ouml; capital O, umlaut/dieresis mark
a &#97; small a × &#215; &times; multiplication sign
b &#98; small b Ø &#216; &Oslash; capital O, slash
c &#99; small c Ù &#217; &Ugrave; capital U, grave accent
d &#100; small d Ú &#218; &Uacute; capital U, acute accent
e &#101; small e Û &#219; &Ucirc; capital U, circumflex accent
f &#102; small f Ü &#220; &Uuml; capital U, umlaut/dieresis mark
g &#103; small g Ý &#221; &Yacute; capital Y, acute accent
h &#104; small h Þ &#222; &THORN; capital Thorn, Icelandic
i &#105; small i ß &#223; &szlig; small sz ligature, German
j &#106; small j à &#224; &agrave; small a, grave accent
k &#107; small k á &#225; &aacute; small a, acute accent
l &#108; small l â &#226; &acirc; small a, circumflex accent
m &#109; small m ã &#227; &atilde; small a, tilde
n &#110; small n ä &#228; &auml; small a, umlaut/dieresis mark
o &#111; small o å &#229; &aring; small a, ring
p &#112; small p æ &#230; &aelig; small ae ligature, dipthong
q &#113; small q ç &#231; &ccedil; small c, cedilla
r &#114; small r è &#232; &egrave; small e, grave accent
s &#115; small s é &#233; &eacute; small e, acute accent
t &#116; small t ê &#234; &ecirc; small e, circumflex accent
u &#117; small u ë &#235; &euml; small e, umlaut/dieresis mark
v &#118; small v ì &#236; &igrave; small i, grave accent
w &#119; small w í &#237; &iacute; small i, acute accent
x &#120; small x î &#238; &icirc; small i, circumflex accent
y &#121; small y ï &#239; &iuml; small i, umlaut/dieresis mark
z &#122; small z ð &#240; &eth; small eth, Icelandic
{ &#123; left curly brace ñ &#241; &ntilde small n, tilde
| &#124; solid vertical bar ò &#242; &ograve; small o, grave accent
} &#125; right curly brace ó &#243; &oacute; small o, acute accent
~ &#126; tilde ô &#244; &ocirc; small o, circumflex accent
 &#127; box õ &#245; &otilde; small o, tilde
&#130; comma ö &#246; &ouml; small o, umlaut/dieresis mark
ƒ &#131; florin ÷ &#247; &divide; division sign
&#132; ø &#248; &oslash; small o, slash/null set
&#133; ellipsis ù &#249; &ugrave; small u, grave accent
&#134; dagger ú &#250; &uacute; small u, acute accent
&#135; double dagger û &#251; &ucirc; small u, circumflex accent
ˆ &#136; circumflex accent ü &#252; &uuml; small u, umlaut,dieresis mark
&#137; permil ý &#253; &yacute; small y, acute accent
Š &#138; þ &#254; &thorn; small thorn, Icelandic
&#139; ÿ &#255; &yuml; small y, umlaut/dieresis mark
Π&#140; capital OE ligature

COMMENTS

Name

AI Android Blogger CSS Facebook Featured Freebie Google HTML Internet Javascript Open Source Post SEO WebDesign Widget Wordpress
false
ltr
static_page
Cybup: HTML Tag Chart
HTML Tag Chart
All HTML tags and corresponding results in a table
Cybup
http://cybup.blogspot.com/p/html-tag-chart.html
http://cybup.blogspot.com/
http://cybup.blogspot.com/
http://cybup.blogspot.com/p/html-tag-chart.html
true
1938789928030985205
UTF-8
Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago