Adding Links to Text

June 8, 2003 Comments Off on Adding Links to Text

Adding links to text is easy if you know the code….

Go to the source code of the post you want to add a link to, find the word or text that you want to add the link to, enter the following code before the word and after the word.

< a href = (in this space enter the url of the link) ” > xxxx </a>

xxxx = represents the word that you want the link to be on

for example, my source code currently looks like this:

<P>Adding links to text is easy if you know the code, </P>
<P>Go to the source code of the post you want to add a link to, find the word or text that you want to add the link to, enter the following code before the word:</P>
<P>&lt; a href = ” (in this space enter the url of the link) ” &gt; xxxx &lt;/a&gt;</P>
<P>xxxx = represents the word that you want the link to be on</P>
<P>for example, my source code currently looks like this:</P>
<P>&nbsp;</P>

if I want to add a link to Julie here then I would do the following in my source code:

go find the word Julie in my source code, add a space before the word then enter the code as follows and then ending code tag and your done.

<A href=”http://www.sexymagick.com/”>Julie</A>

Categories : Newbie Tips