I have the html code, but now I need help creating the link?

  • Thread starter Thread starter MegW12
  • Start date Start date
M

MegW12

Guest
I am creating my wedding bio to add to my signature on posts. And I figured out how to get the bio in my sig, but I just want a link to my bio. How do I do that? I'd ask on the knot, but it's acting weird.
I'm not really sure, what I've got is the super long html code, and what I want it to look like in my signature is: My Wedding Bio, and it's actually a link to the wedding bio
neither worked but thanks
 
Assuming the URL where you want the link to be pointed is http://myweddingpage.html, then you may want to add the following

<a href="http://myweddingpage.html">The text that you want to put</a>

In HTML, < starts a tag. When a browser finds a tag, it processes things inside the tag depending upon the tag. For links you use 'A' tag. The tag ends with </a>.

If you want the browser to open a new window when user clicks on the link, you may want to use the target attribute as follows.

<a href="http://myweddingpage.html" target="_blank">The text that you want to put</a>

Rahul
 
what are you asking? to make a link in html?

if that's the case it's:

<a href="URL">link text</a>
 
Back
Top