|
|
HTML - Tag Listing
Here is a list of some common tags. This is by no means the entire list of HTML tags.
Visit the following sites for more information:
|
Command
|
Tag
|
Description
|
Example
|
|
Bold
|
<b></b>
|
Makes text bold.
|
<b>bold</b>
|
|
Line Break
|
<br>
|
Makes a line break.
|
hi<br> bye.
|
|
Center
|
<center></center>
|
Centers the text
|
<center>Centered</center>
|
|
Horizontal Rule (line)
|
<hr>
|
Makes a line across the page
|
hello<hr>
|
|
Paragraph
|
<p></p>
|
Puts the text in a paragragh.
|
<p>This is one paragraph</p>
<p>This is another paragraph.</p>
|
|
Headings
|
<h1></h1>
|
Creates different size (1-6) headings.
|
<h1>Heading 1</h1>
|
|
<h2></h2>
|
<h2>Heading 2</h2>
|
|
<h3></h3>
|
<h3>Heading 3</h3>
|
|
<h4></h4>
|
<h4>Heading 4</h4>
|
|
<h5></h5>
|
<h5>Heading 5</h5>
|
|
<h6></h6>
|
<h6>Heading 6</h6>
|
|
Font
|
<font></font>
|
Changes the text's font, color, & size.
|
<font color="#ff0000">red</font>
|
|
HyperLink
|
<a></a>
|
Create a HyperLink.
|
<a href="http://www.wps60.org/">WPS</a>
|
|
Image
|
<img>
|
Adds an image.
|
<img src="http://images.waukeganschools.org/wpslogo_smallw.gif">
|
|
|