Wrapping an anchor element round some text

This is something that’s occuring a lot in the forums.
When asked to make some text into a link, do the following;

  1. Identify the text that it’s telling you to make into a link.
  2. Wrap an anchor element around it. Before the text put <a> (opening anchor tag), and after the text, put </a> (closing anchor tag).
  3. In the opening tag of the anchor element, place a href attribute, and place the value after the equals sign and in between the speech marks (=" place the value here").
    Example; <p> I would like to order some <a href="place the value here">coffee</a>.</p>
    The word coffee in the example above, will become a link.

I hope this helps.
Thank you.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.