HTML characters Dictionary

10:55:00 PM |

HTML overview
HTML, or HyperText Markup Language, is a world wide markup language that allows a user to create his or her own web page. While HTML is a fairly easy to learn markup language, it does involve several hundred commands to learn and memorize.

With HTML, the user creates tags; tags are anything between the less-than and the greater-than signs. Using the tags, this identifies where the commands begin and end. 
For example, <b>Bold Text</b> tells the browser that <b> is the beginning of the bold text statement that will turn anything after that tag bold; once the browser hits </b> the browser then turns the bold text statement off, allowing for only specific text to be bold.
On this page we have created a list of HTML commands, which can be used in web pages to change text, add different features, and apply several other different effects.


<!-- REMARK -->
 - HTML Tag that allows you to implement comments into your HTML Code, which would be hidden to the average browser.
Example:
<!-- This text Cannot be seen by the user unless the source is viewed. -->

<a> -HTML tag that allows aspects of your web page to be anchored, such as a link <a href= "http://www.ns-services.blogspot.com">
Example:
<a href="http://www.ns-services.blogspot.com">Zo Hornbill</a>
Preview:

<abbreve> - New HTML tag available with HTML3.0 which allows you to abbreviate words on your web page automatically.
Example:
<abbreve>Contained words will be abbreviated.</abbreve>

<acronym> - Like ABBREV, also a new command with HTML 3.0 that displays the text acronym when mouse is highlighted over text.
Example:
<acronym title="Free computer help and support">Do you like Zo Hornbill?</acronym>
Preview:
Do you like Zo Hornbill?

<address> - Command that changes the format of the text to signify an address. This is generally used with e-mail addresses. However, can also be used for a street address.
Example:
<address>tgnsthangno@zomi.net</address>
Preview:
tgnsthangno@zomi.net

<applet> - Command used with Netscape to implement a Java application into a web page.
Example:
<applet code="myapplet">Click here to see Java applet.</applet>
Additional information:
To insert JavaScript into your web page you would use the <script> tag.

<area> - Defines a section of an image that the user can click on. This allows you to have one image with multiple clickable links within it.
Example:
<area cord="10,20,150,125" SHAPE=rect HREF="http://www.ns-services.blogspot.com">. The CORD that is used in this example tells the computer where on the image the location for the link is when your mouse is over that CORD; then, if clicked, it will go to the web page. The SHAPE tells the browser it is able to click and what shape the portion area is.
Example:

<map name="menu"> <area shape=rect COORDS="100,5,155,55" HREF="http://www.ns-services.blogspot.com"> </map>
<img src="title.gif" usemap="#menu"><br />
Additional information:
The 100,5,155,55 are telling the browser where the link is. 100 representing how far from the left you want the link to start. 5 representing how far from the top you want the link to start. 155 representing how far from the right you want the link to end. 55 representing how far from the bottom you want the link to end.

<b> - Tells the browser to display the text within the HTML tags to be bold.
<b>This text would be in bold</b>
Preview:
This text would be in bold

<banner> - HTML Tag used with HTML 3.0 used like scrolling but does not scroll with the rest of the HTML document.
Example:
<banner>Do you like Zo Hornbill?</banner>

<basefont> - Tells the browser the new set for the font size can be 1 through 7. The default value is 3.
Example:
<basefont size=2>

<bdo> - Tells the browser how to display the text; for example, using the dir attribute you can make it go left to right using dir=ltr 
Example: 
<bdo dir=rtl>Makes text go opposite way<bdo> this just causes the text to go right to left; this tag is usually used for international purpose.
Example:
<bdo dir=ltr>This text would be going from the left to the right.</bdo>
Preview:
This text would be going from the left to the right.

<bgsound> - Allows you to play your music on your web page with Internet Explorer; will not work with people browsing with Netscape. You may also add the loop= statement to specify how many times you wish the sound to play.
Example:
<bgsound src="sounds.wav" loop=1 />
Example:
<bgsound src=sounds.wav loop=infinite />

<big> - HTML 3.0 tag that allows your text to be BIG.
Example:
<big>This text would be big.</big>
Preview:
This text would be big.
Example:
<big><big>This text would be bigger.</big></big>
Preview:
This text would be bigger.

<blink> - HTML tag that can be extraordinarily annoying when viewing a web page. Internet Explorer does not incorporate this tag, but still is available with Netscape Navigator.
Example:
<blink>This text would be blinking if compatible browser</blink>
Preview:
This text would be blinking if compatible browser.

<blockquote> - Command that allows you to indent your lines one inch from the left hand side. Instead of using this command to indent text or other objects we suggest using CSS.
Example:
<blokquote>This would be one tab from the left hand side of the page or the table cell it is in.</blockquote>
Preview:
This would be one tab from the left hand side of the page or the table cell it is in.

<body> - Command that should be located towards the top of your HTML code. This tag is used to specify the color of the text, the links, the background color and the background image.
Example:
<body background="back.gif" bgcolor="#FFFFFF" text="#000000" link="#000000" vlink="#000000" alink="#000000" topmargin="0" leftmargin="0"> 
background="back.gif" - Use an image as a background. When doing this make sure your background image is the same size as the resolution you wish to support. 
bgcolor="#FFFFFF" - This specifies we wish to have a white background; while this is not necessary when having an image as a background, it generally creates a better transition for our page, considering it contains mostly white. #FFFFFF is the hexadecimal for the color white. In this tag you can also specify white instead of the hexadecimal value. 
text="#000000" - This tells the browser to display all text black unless otherwise specified. #000000 is the hexadecimal for the color black. This tag will also allow you to specify the color by spelling it out. 
link="#000000" -  Specifies that links on the page that have not been visited should be black. If this tag is not specified the default color will be used, which usually is a blue. #000000 is the hexadecimal for the color black. This tag will also allow you to specify the color by spelling it out. 
vlink="#000000" - Specifies the color of the links that have been visited. If this tag is not specified the default color is generally purple. #000000 is the hexadecimal for the color black. This tag will also allow you to specify the color by spelling it out. 
alink="#000000" - Specifies the color when the link is active; this is generally specified for newer browsers, old browsers under 3.x do not have any effect on this code. The active link only changes when clicked (this is not used to change the color when the mouse is moved over the link). #000000 is the hexadecimal for the color black. This tag will also allow you to specify the color by spelling it out. 
topmargin="0" - Tells the browser not to have a margin on the top of the browser window (this is generally a small white space on the top of the page. We have noticed that Netscape and older versions of Internet Explorer do not completely eliminate the margin even if the value is zero. 
leftmargin="0" - Tells the browser not to have a margin on the left side of the browser window (this is generally a small white space on the top of the page. We have noticed that Netscape and older versions of Internet Explorer do not completely eliminate the margin even if the value is zero.
Preview:
The above example is the body tag we are currently using on this page.

<br> - Tells the browser that this is the end of the line and to start a new one.
Example:
The <br /> HTML tag returns once (down one line), another applicable HTML tag is <p align="left"> Paragraph here.</p> When this tag is used this will begin a new paragraph
Preview:

The
HTML tag returns once (down one line), another applicable HTML tag is
Paragraph here.
When this tag is used this will begin a new paragraph

<center> - Tells the web browser to center the text according to the page, table, or frame.
Example:
<center>This text would center on the page.</center>
Preview:
This text would center on the page.
<cite> - Similar to the blockquote command this command enables you to cite text and displays itself in an italic font.
Example:
<cite>This text is in italic and is a cite from somewhere else.</cite>
Preview:
This text is in italic and is a cite from somewhere else.

<code> - Allows the user to specify code or a command that generates a different font to signify the code.
Example:
<code>dir - command used in DOS to list files.</code>
Preview:
dir - command used in DOS to list files.

<del> - Allows a user to delete text within an HTML document without actually removing it using a strike through.
Example:
This is an example of <del>removed</del> text.
Preview:
This is an example of 
removed
 text.

<dd> - Specifies to the browser that a definition is going to placed in the code. The browser will then indent the paragraph (x 2) and change the font of the characters.
Example:
<dd>Definition goes here.</dd>
Preview:
        Definition goes here.

<em> - Tells the browser that this is important text and it will make it emphasized.
Example:
<em>Do you like Zo Hornbill?</em>
Preview:
Do you like Zo Hornbill?

<embed> - Used with  Netscape Navigator, which implements a third-party file such as a movie or sound clip or some special embedded object on the web page. Example: <embed src="mydoc.dcr">
Example:
<embed src="resume.doc" />

<font> - Allows you to have multiple fonts, colors and sizes.
Example 1:
<font size=+2>This text would be two times bigger.</font>
Example 2:
<font color="blue">This text would be blue.</font>
Example 3:
<font color="red">This text would be red.</font>
Example 4:
<font color="yellow">This text would be yellow.</font>
Preview 1:
This text would be two times bigger.
Preview 2:
This text would be blue.
Preview 3:
This text would be red.
Preview 4:
This text would be yellow.

<form> - Allows you to obtain input from visitors; you can see an example of this by viewing the source in our Contact page.

<frame> - Netscape HTML extension that allows you to use frames on the web page, being able to make bigger and smaller sections; each frame can contain different text. You can also use the <frameset command, which is a replacement for the regular body command.>
Example:
<frame src="http://www.ns-services.blogspot.com" scrolling="yes" norsesize />

<h1> - <h6> - Tells the browser how big you want the text <H1> being the biggest and <H6> being the smallest.
Example:
<h1>H1</h1><h2>H2</h2><h3>H3</h3><h4>H4</h4><h5>H5</h5>

Preview:
H1
H2
H3
H4
H5

<head> Allowing you to tell about the web page but this info will never be displayed when viewing unless the source is viewed, as well as the location to place your meta tags.
Example:
<head><title>Look at the top of the page how it says HTML HELP, specify the name you want the page to be.</title></head>

<hr> - Puts a normal bar across the screen to help separate the text.
Example 1:
<hr>
Example 2:
<hr width="50%" />
Example 3:
<hr size=10 width="50%" />
Preview 1:

Preview 2:

Preview 3:


<i> - Italicizes the text.
Example:
<i>Italic Text</i>
Preview:
Italic Text

<img> - Command used to display images on your web page.
Example:
<img src= "logo.gif" />

<ins> - Short for Insert, this tag is used to help illustrate what new text has been inserted into an HTML document. Useful for when multiple people are working on the same document.
Example:
This line of text has <ins>new</ins> inserted text.
Preview:
This line of text has 
new
 inserted text.

<ISIndex> -  New command coming out with HTML 3.0 allowing you to search.
Example:
<ISIndex>

<li> - Tells the browser that this is a list item, either putting a bullet in front of text or a number in front of the text, depending if <ul> or <ol> is used.
Example:
<ul> <li>one</li> <li>two</li> </ul>
Example 2:
<ol> <li>one</li> <li>two</li> </ol>
Preview:
  • one
  • two
Preview 2:
  1. one
  2. two
<marquee> -  Used with Microsoft Internet Explorer and other recent browsers to make your text scroll on the screen. This HTML tag does not work with any current versions of Netscape Navigator.
Example 1:
<marquee behavior="scroll" direction="left">Do you like Zo Hornbill?</marquee>
Example 2:
<marquee behavior="scroll" direction="right"> Do you like Zo Hornbill? </marquee>
Example 3:
<marquee behavior="slide" direction ="left"> Do you like Zo Hornbill? </marquee>
Example 4:
<marquee behavior="alternate" > Do you like Zo Hornbill? </marquee>
Example 5:
<marquee behavior="scroll" direction="left" bgcolor="blue">Do you like Zo Hornbill? </marquee>
Example 6:
<font color ="green"><marquee behavior="scroll" direction="right" >Do you like Zo Hornbill? </marquee></font>
Example 7:
<font color ="white"><marquee behavior="scroll" direction="right" bgcolor="red">Do you like Zo Hornbill? </marquee></font>
Preview 1:
Do you like Zo Hornbill?
Preview 2:
Do you like Zo Hornbill?
Preview 3:
Do you like Zo Hornbill?
Preview 4:
Do you like Zo Hornbill?
Preview 5:
Do you like Zo Hornbill?
Preview 6:
eDo you like Zo Hornbill?
Preview 7:
Do you like Zo Hornbill?

<meta> - Allowing you to tell some search engines what to display for your page and keywords for your page.
Example 1:
<meta name="description" content="Zo Hornbill's want to help your computer">
Example 2:
<meta name="keywords" content="Computer, support, Internet, free, html, printers, windows" />
Example 3:
<meta name="generator" content="Generated in Notepad" />

<nobr> - Tells the browser that you want to continue the line with no breaking, preventing the line from getting cut of and returning to the next line.
Example:
<nobr>This line would go on and not auto return so if the browser screen was not as long as the sentence you would have to scroll to see the remainder of the screen.</nobr>
Preview:
This line would not wrap until you entered a break

<ol> - Tells the browser that this is a list item and to list it in numbering format.
Example:
<ol> <li>one</li> <li>two</li> </ol>
Preview:
  1. one
  2. two
<optgroup> - Add an option groups to a drop down list of items.
Example:
<select name="Example"> <optgroup label="First"></optgroup> <option>Example one</option> <optgroup label="Second"></optgroup> <option>Example two</option> </select>
Preview:
<p> - Tells the browser that this is the end of the paragraph and will not attempt to word wrap it.
Example:
<p>Location for the paragraph to begin and end.</p>
Preview:
Location for the paragraph to begin and end.

<pre> - Tells the browser to do what you do as you type it so you can put text where you want it and have as many spaces as you want.
Example:
<pre>The    Text  Can l  o  o  k  how you want it to    l  oo k.</pre>
Preview:
The Text Can l o o k how you want it to l oo k.

<samp> - Will enclose the text as a sample, usually lower casing it and underlining it.
Example:
<samp>This would be small and plain.<samp>
Preview:
This would be small and plain.

<select> - Select menu that allows their person viewing your web page to select from a menu.
Example:
<select name="List" size="1"> <option value="Option1">Option1</option> <option value="Option2">Option2</option> <option value="Option3">Option3</option> </select>
Preview:
<strong> -  Putting the text bold.
Example:
<strong>This text would get your attention</strong>
Preview:
This text would get your attention

<sub> - Subscript; makes the browser display text low.
Example:
This text would be <sub>below</sub> midway.
Preview:
 This text would be below midway

<sup> - Superscript; makes the browser display text high.
Example:
This text would be <sup>above</sup> midway.
Preview:
This text would be above midway

<table> - Allows you to Align text in tables. How you do this is start with <table> and if you want borders, just use the below commands.
Example:
<table align="center" border="1" cols="5" width="20" cellpadding="5"><tr><td>HTML characters Dictionary</td></tr></table>
Preview:
HTML Character
Dictionary

<td> - Used to define each cell part of the table.
Example:
<td align="center" width="20">Cell</td>

<textarea> - Allows the user to input text.
Example:
<textarea name="text" cols="20" rows="20"></textarea>
Preview:
<th> - This is what each cell on the table is using. You can make this contain as many cells as you need.
Example:
<th valign="middle" width="100">Table header</th>
Preview:
Preview not available for the fact changes page layout.


<title> - This is used to label the page that your on. For example, the name of this page is ONLINE HELP -HTML-, Usually shown at the top of your screen.
Example:
<title>HTML characters Dictionary</title>

<tr> - The start of each row in a table
Example:
<tr><td>Table contents</td></tr>
<tt> - Tells the browser that the font needs to be evenly spaced to occupy the full line.
Example:
<tt>This would be displayed as teletype</tt>
Preview:
This would be displayed as teletype

<ul> - Starts a bulleted item list (puts a bullet in front of text).
Example:
<ul> <li>one</li> <li>two</li> </ul>
Preview:
without bullet
  • one 
  • two
with bullet
  • one
  • two
<xmp> - Tells the browser to do no formatting to this text, just to display as-is, no matter what the size of the screen is. Just like the <pre> command.
Example:
<xmp>Put  text in it  s  own  area.</xmp>
Preview:
 Put      text in it     s     own    area


Aw.. Now I'm hungry! Thank you for reading