08 August 2013

Txt/Image LINK



TEXT LINK



A Hypertext Reference (href) is an HTML attribute of an anchor (link) tag that requires a valid URL in order to properly direct a user to a different location. In other words, this Hypertext Reference is where users will navigate to if they do click on this link.

code:

<a href="PAGE URL" target="_blank">TXT HERE</a>


How To Change Hyperlink Color

There are several ways to change the color of hyperlinks. This section reveals how to do this by adding the style attribute to the hyperlink code, inserting a color property into the style attribute then giving the color property a color value.

code:

<a href="PAGE URL" target="_blank" style="color: #CC0000>TXT HERE</a>


How To Remove Underline From Hyperlink

There are several ways to remove the hyperlink underline. This scetion shows how to do this by adding the style attribute to the regular hyperlink code, adding the text-decoration property and giving the text-decoration property a value which in this case is none.

code:

<a href="PAGE URL" target="_blank" style="color: #CC0000">TXT HERE</a>


How To Change Hyperlink Underline Color

Changing the underline color of a hyperlink cannot be done with straight HTML. To do this, we take the regular hyperlink code and add an inline CSS style to it. The underline first has to be removed with the text-decoration property value of none and then we add the border-bottom property with 3 short-hand CSS values of 1px solid #999999.
    :1px = Variable border width in pixels which in this case is used as the hyperlink underline width.
    :solid = Border style.
    :#999999 = Color code. Use this variable to change the underline color. Replace this value with your choice of color codes.

code:

<a href="PAGE URL" target="_blank" style="text-decoration: none; border-bottom: 1px solid #FFFF33">TXT HERE</a>


IMAGE LINK



You can make your images "clickable" so that when a user clicks the image, it opens another URL. You do this by simply wrapping the image with hyperlink code.

This is Auto change

code:

<a href="Destination PAGE URL" target="_BLANK" onclick="return dcu(this);"><img src="http://ffsng.com/u.php?w=pic_big&uid=Paste here your uid" style="border: 4px double white;" width="150" height="150" title="NAME"></a>


If you don't want the border, specify border: 0px.

UID (User ID), and how do I find it?
UID is a unique number assigned to your profile.

EXAMPLE:

My link

At the top of your browser, you will see a URL that looks like this:

http://ffsng.com/?uid= 5087&h=96ff7223

the yellow Bg was my uid. The number at the end of the URL

NOTE: If your uid didn't appear, click your owner/pets picture then click your picture.





- Comments

No comments:

Post a Comment