Posted by Chaddy2222 on 11/14/05 08:42
Stefan Mueller wrote:
> I'd like to write my html code in a structured way.
>
> Therefore I don't like to write
> Please click here: (<a href = "next.html">link</a>)
> --> Output: Please click here: (link)
>
> I prefer
> Please click here: (
> <a href = "next.html">
> link
> </a>
> )
> --> Output: Please click here: ( link )
You could just right your links as follows:
<a
href="examplepage.html">ExampleLink</a>
Quite simple really.
--
Regards Chad. http://freewebdesign.cjb.cc
>
> Unfortunately in the second version I do have a space before and after the
> word 'link'.
> Does someone know if there's a tag or something like that to tell the
> browser not to add a space?
>
> Stefan
>
> PS: This is only a simplified example which shows my problem. My real 'a
> href' has many lines like onMouseover, onMouseout, ...
[Back to original message]
|