Special Character escapes
Don't Use Use this insted
CDATA escapes (larger list) out various needed ascii
See Unicode escapes also
%20 blank space in your link
<

&lt;

>

&gt;

& &amp;
' &apos;
" &quot;
© &copy;
® &reg;
empty space &nbsp;
 
If you want to tell the browser to tab, or new line etc. use a backslash in from of one of the escape codes
\b tells the browser to backspace
\f form feed
\n new line
\r carriage return
\t tab
\\ backslash - just print a backslash
\' print a single quote
\" print a double quote

 

 

 

 

 

 

 

 

 

 

Linking in html

Additional HTML references
# targets, escapes out an HTML link
<a href="nextpage.htm#mytarget" >my target</a>
used with <a name="mytarget">Targets</a>
absolute "http://www.w3c.org"
"http://www.mysite.com/images/pict1.gif"

1. Good for reusing your browser's memory - doesn't have to reload for each page
2. Can re-use this navigation for many pages
relative

start where you are (at your site), now where we move from here

 

go into a folder <a href="nextFolder/mypage.htm"> my page </a>
back up out of a folder, then go into a page <a href="../mypage.htm"> my page </a>
back up out of two folders, then go into a page <a href="../../mypage.htm"> my page </a>
back up out of a folder, then go into another folder, now get a page in there <a href="../nextFolder/mypage.htm"> my page </a>
back up out of two folders, then go into another folder, now get a page in there <a href="../../nextFolder/mypage.htm"> my page </a>