|
Posted by Martin Jay on 12/18/04 11:46
In message <vao5g.21454$l91.18454@newsfe6-gui.ntli.net>, Ian Davies
<iandan.dav@virgin.net> writes
>I wish to refer to a line of HTML code without activating that code in my
>documents. So, for example, if I want to describe the string of code needed
>to make a link, I can do so without creating the link itself, rather than
>the code. How is this acheived
Use:
<a href="index.html">Index page</a>
or, maybe:
<a href="index.html">Index page</a>
instead of:
<a href="index.html">Index page</a>
For example < instead of < and > instead of >.
There's a list at:
<http://www.htmlhelp.com/reference/html40/entities/special.html>
And perhaps put your code between <code></code> or <pre></pre> HTML
tags. There's some info here:
<http://www.htmlcodetutorial.com/quicklist.html>
--
Martin Jay
[Back to original message]
|