There are two types of hyperlink that can be created using xHTML - those which open in the same page when clicked & those which open up a new page/tab when clicked.
Please note, in both of these examples you must include the full URL - starting with "http://www." otherwise the link will not work.
Creating a link which opens in the same window:
I will use NCIS as an example. If I wanted to link to the NCIS summary page like this - NCIS - I would use the following code:
| Code: |
| <a href="http://www.tv.com/NCIS/show/16772/summary.html">NCIS</a> |
The code for the link will always be the same. The only things you will need to change within the link are the URL (between the quotes) and the word that you want to link to (in my example, NCIS).
Creating a link which opens in a new window:
The code is almost the same, except there is one small addition before the first closing 'pointy bracket': target="blank"
| Code: |
| <a href="http://www.tv.com/NCIS/show/16772/summary.html" target="blank">NCIS</a> |
This will give you a url that when clicked will open up in a new tab or page (depending on your browser's settings): NCIS.
How your blurb will look with this URL code included:
So, now you know the codes, but how will it look in the submission that you are making? Here is an example of a trivia item, again using NCIS as an example, which shows you how the blurb will look within the submission form:
| Code: |
| On the set of <a href="http://www.tv.com/NCIS/show/16772/summary.html" target="blank">NCIS</a>, Mark uses a 1972 Airstream trailer that he restored himself as a "Dressing Room". The trailer has avocado green benchtops. |
On the page, this would look like this:
"On the set of NCIS, Mark uses a 1972 Airstream trailer that he restored himself as a "Dressing Room". The trailer has avocado green benchtops."
(Please note that this example uses no other formatting around the link - please refer to any staff posted guidelines for information regarding whether show names should still be italicized when they are hyperlinked - thanks)
Edited on 03/29/2009 3:03am

