what this the code to label a website?

Devilfish1688

BANNED
Joined
Sep 30, 2013
Messages
944
Reaction score
53
for an example http://www.google.com

i want to put google when people click on this name will go to http://www.google.com.

instead I copy and past the whole url on the page


I wonder which one is better ?

or it does not matter ?
 
Code:
<a href="http://www.google.com">THE TEXT YOU WANT</a>
 
thanks and what the code to make it bold?

and open it in another new window?
 
confirm that target should be blank, so website will open on new window
<strong><a href="http://www.google.com" target="_blank">THE TEXT YOU WANT</a></strong>
 
<a href="URL"> YOUR TEXT HERE </a>

For making it bold use the <strong> tag.

If making it even bold, use the font-weight CSS.
 
Back
Top