HTML Tags Chart
HTML Tags Chart
To use any of the following HTML tags, simply select the HTML code you'd like and copy
and paste it into your web page.
<center> center <center>This will center your contents</center> This will center your
contents
<dl> Definition Term
<dt>Definition Term</dt> Definition of the
definition <dd>Definition of the term</dd> term
<dd>
description <dt>Definition Term</dt> Definition Term
<dd>Definition of the term</dd> Definition of the
</dl> term
<dl> Definition Term
<dt>Definition Term</dt> Definition of the
definition <dd>Definition of the term</dd> term
<dl>
list <dt>Definition Term</dt> Definition Term
<dd>Definition of the term</dd> Definition of the
</dl> term
<dl> Definition Term
<dt>Definition Term</dt> Definition of the
definition <dd>Definition of the term</dd> term
<dt>
term <dt>Definition Term</dt> Definition Term
<dd>Definition of the term</dd> Definition of the
</dl> term
This is an <em>Example</em> of using This is an Example of using
<em> emphasis
the emphasis tag the emphasis tag
embed <embed src="yourfile.mid" width="100%"
<embed>
object height="60" align="center"> (Tip)
heading of
<head>Contains elements describing the
<head> HTML Nothing will show
document</head>
document
Example 2:
Example 2:
<ol type="i">
<li>List item 1</li> i. List item 1
<li>List item 2</li> ii. List item 2
<li>List item 3</li> iii. List item 3
<li>List item 4</li>
</ol>
iv. List item 4
<head>
<link rel="stylesheet" type="text/css"
<link> link
href="style.css" />
</head>
<marquee bgcolor="#cccccc" loop="-1"
scrollamount="2" width="100%">Example
Marquee</marquee>
Use our HTML color picker if you need to choose from an almost infinite variety of colors. Also, if
you like a color scheme of a web page view Tip142 for a fantastic tool that can be used to
gather that page's color codes.
Using the correct website color can be of the utmost importance to attract the preferred
audience to a website. There is a reason that most poker rooms on the internet uses the
basic poker table color of green (#088A4B). Black and Red are also popular colors. Black
has a classic quality feel to it and Red is the color of courage and aggressiveness, which
are very important qualities of a good poker player.
With HTML color codes you can set the color of web site background, color of text, cells
in tables and much more.
<body
style="background:#80BFFF"> Using HTML color codes for
setting font/text color:
<span style="color:#80BFFF">
Using HTML color codes for
table background color:
<table
style="background:#80BFFF"> Using HTML color code for link
color:
<a style="color:#80BFFF">
HTML Color Codes Theory
So you are wondering "Does this weird combination of letters and numbers have any
meaning?" Well the answer is "Yes" and this is how it goes:)
Meaning of symbols:
The first two symbols in HTML color code represents the intensity of red color. 00 is the
least and FF is the most intense. The third and fourth represents intensity of green and
fifth and sixth represents the intensity of blue. So with combining the intensity of red,
green and blue we can mix almost any color that our heart desire;)
Examples:
#FF0000 - With this HTML code we tell browser to show maximum of red and no green
and no blue. The result is of course pure red color:
#00FF00 - This HTML code shows just green and no red and blue. The result is:
#0000FF - This HTML code shows just blue and no red and green. The result is:
#CCEEFF - Take some red a bit more of green and maximum of blue to get color of sky:
Have fun!