How To Make Links
Tags U-Z
 
<u></u>

Renders text underlined.

When something is important enough, you <u>underline</u> it.

When something is important enough you underline it.

This is another one of those tags that "proper typography" says that you shouldn't use. In the days of typewriters, typists would underline text that would normally be rendered italicized. It was really just a poor man's italics. So really, underlining means italics. Use <i> instead.

  I.E. Netscape
<u> X X

HTML Reference
| Tags A | Tags B | Tags C | Tags D | Tags E-G |
| Tags H-K | Tags L-N | Tags O-R | Tags S | Tags T | Tags U-Z |


<ul></ul>

Starts an unordered or bulleted list. This is to be used in combination with the <li> tag.

  • type=

Specifies the type of bullet to be used. Values are disc (default), circle (hollow circle), or square.

<ul type="circle">
   <li>Item 1</li>
   <li>Item 2</li>
   <li>Item 3</li>
</ul>

  • Item 1
  • Item 2
  • Item 3

For more information on lists, see my List Tutorial.

  I.E. Netscape
<ul> X X
   ..type X X

HTML Reference
| Tags A | Tags B | Tags C | Tags D | Tags E-G |
| Tags H-K | Tags L-N | Tags O-R | Tags S | Tags T | Tags U-Z |


<var></var>

Indicates that the included text is a variable. This tag works the same way as <code>.

Rewrite the equation <var>Ax + By = C</var> in terms of <var>A/B</var>.

Rewrite the equation Ax + By = C in terms of A/B.

 

  I.E. Netscape
<var> X X

HTML Reference
| Tags A | Tags B | Tags C | Tags D | Tags E-G |
| Tags H-K | Tags L-N | Tags O-R | Tags S | Tags T | Tags U-Z |


<wbr>

Specifies where a line break can occur in a line of <nobr> text. This will not insert a line break. Use <br> for that. Instead it merely states where a line break CAN occur if it is needed. If the browser feels that a line break doesn't need to occur where a <wbr> tag has been placed, then it won't break the line there.

<nobr>This sentence will not wrap because of the use of the nobr tag. I can specify where a break can occur by using wbr here.<wbr>It depends on your display mode whether it broke the sentence or not.</nobr>

This sentence will not wrap because of the use of the nobr tag. I can specify where a break can occur by using wbr here. It depends on your display mode whether it broke the sentence or not.

  I.E. Netscape
<wbr> X X

HTML Reference
| Tags A | Tags B | Tags C | Tags D | Tags E-G |
| Tags H-K | Tags L-N | Tags O-R | Tags S | Tags T | Tags U-Z |


<xmp></xmp>

Specifies that the included text and code is to be displayed literally. using this tag, you can write normal HTML code and it will be displayed "as is".

<xmp>
<!-- Normally, this text wouldn't be displayed, but this is an exception -->
</xmp>

<!-- Normally, this text wouldn't be displayed, but this is an exception -->

NOTE: Only the current browsers support this tag. Some pretty whacked-out looking pages may result for older browsers. Basically, it's safer to just use <code> instead.

 

  I.E. Netscape
<xmp> X X

HTML Reference
| Tags A | Tags B | Tags C | Tags D | Tags E-G |
| Tags H-K | Tags L-N | Tags O-R | Tags S | Tags T | Tags U-Z |

Created & Managed With Microsoft Frontpage 98 Best experienced with Mirosoft Internet Explorer Counter by Webcounter
Web Tracker Designed with Derekware HTML Author. Free Speech NOW!

©1996-1999 Gilpo All rights reserved. This document may not be altered in anyway or distributed without the expressed written consent of Gilpo. All information contained herein is deemed to be accurate but is not warranted.