|
TeachOrTutor HTML Help
HTML uses what are called tags. Most HTML need a beginning and end tag.
Each tag MUST be enclosed in brackets like this <> the end tag also must
have the brackets, however you need to put a forward slash in the end bracket.
Online, people use HTML to create web pages. Now you can
use HTML tags to spice up your listings! Here's how:
Paragraphs, line breaks, and horizontal lines
Separate your paragraphs using the <p> tag for a new paragraph.
The <br> tag starts a new line without skipping any space. To draw a line across the screen, use <hr> (for "horizontal rule").
| Tag |
How to use it |
What it looks like |
| <p> |
Buy my item!<p>You'll enjoy it!
|
Buy my item!
You'll enjoy it! |
| <br> |
Buy my item!<br>You'll enjoy it! |
Buy my item!
You'll enjoy it! |
| <hr> |
Buy my item!<hr>You'll enjoy it! |
Buy my item!
You'll enjoy it! |
Create titles six different ways
| Tag |
How to use it |
What it looks like |
| <h1></h1> |
<h1>Buy my item!</h1> |
Buy my item! |
| <h2></h2> |
<h2>Buy my item!</h2> |
Buy my item! |
| <h3></h3> |
<h3>Buy my item!</h3> |
Buy my item! |
| <h4></h4> |
<h4>Buy my item!</h4> |
Buy my item! |
| <h5></h5> |
<h5>Buy my item!</h5> |
Buy my item! |
| <h6></h6> |
<h6>Buy my item!</h6> |
Buy my item! |
Emphasize words using bold, italic and underline
| Tag |
How to use it |
What it looks like |
| <b></b> |
<b>Buy my item!</b> |
Buy my item! |
| <i></i> |
<i>Buy my item!</i> |
Buy my item! |
| <u></u> |
<u>Buy my item!</u> |
Buy my item! |
Increase or decrease your font one size at a time using <big> and <small> tags
| Tag |
How to use it |
What it looks like |
| <big></big> |
Buy<big>right away <big>for a great deal </big>and you </big>may win! |
Buy right away for a great deal and you may win! |
| <small></small> |
Buy now! <small>Before it's all over!</small> |
Buy now! Before it's all over! |
Use color
Liven type up with built-in colors like aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, yellow or white.
| Tag |
How to use it |
What it looks like |
| <font color=color> </font> |
Hi! <font color=green>Buy</font>and you may win! |
Hi, Buy and you may win! |
| <font color=color> </font> |
Hi! <font color=blue> Buy</font>and you may win! |
Hi, Buy and you may win! |
Center your text
| Tag |
How to use it |
What it looks like |
| <center> </center> |
<center>Buy now!</center> |
Buy now! |
Create lists with bullets or numbers
- Begin your list with <ol> for an ordered, or numbered, list.
- Start the list with <ul> for a bulleted list.
- Each item in the list should have a <li> tag at the beginning and </li> at the end of each item.
| Tag |
How to use it |
What it looks like |
<ul></ul>
<li></li> |
My item is: <ul>
<li>New</li>
<li>In excellent condition</li>
</ul> |
My item is:
- New
- In excellent condition
|
<ol></ol>
<li></li> |
My item is: <ol>
<li>New</li>
<li>In excellent condition</li>
</ol> |
My item is:
- New
- In excellent condition
|
|