SPECIAL CHARACTERS   Go back to the Main Menu 

There is a nifty little code that means "space" to the browser ->   Try this... Something    really     cool

The & means we are beginning a special character, the ; means ending a special character and the letters in between are an abbreviation for what it's for. Listed below are some of these special characters. (Note- use lower case)

The Code for this page is as follows:

<HTML>
<HEAD>
<TITLE> Exercise 5 in HTML</TITLE>
</HEAD>
<BODY BACKGROUND="bluebar.gif">

There is a nifty little code that means "space" to the browser ->  
       Try this...

Something   
really    
cool
<P>
The & means we are beginning a special character, the ; means ending a special character
and the letters in between are an abbreviation for what it's for. Listed below are some
of these special characters. (Note- use lower case)<P>

<UL>
<LI><TT> </TT> (non-breaking space)
<LI><TT><</TT> (< less-than symbol)
<LI><TT>></TT> (> greater-than symbol)
<LI><TT>&</TT> (& ampersand)
<LI><TT>"</TT> (" quotation mark)
<LI><TT>©</TT> (© copyright)
<LI><TT>®</TT> (® registered trademark)
<LI><TT><SMALL><SUP>TM</SUP></SMALL></TT> (Trademark) I cheated here!
</UL><P>

</BODY>
</HTML>

 Go back to the Top   Go back to the Main Menu