Custom Search

Make Text/Hyper link to another webpage!


To make Text/Hyper links with another webpage it is required to know few peace of HTML code. Since links are important issue to make bridge with another web page so we will learn the HTML/XHTML code with real time example right now.





[] Making Text/Hyper link to open a target page in the same window

Code:-

< a href="target">TEXT HERE< /a>

Example:-

< a href="http://www.google.com">Google< /a>

Output will be: Google

[] Making Text/Hyper link to open a target page in new window

Code:-

< a href="target" target="_blank">TEXT HERE< /a>

Example:-

< a href="http://www.google.com" target="_blank">Google< /a>

Output will be: Google

Note: In order to copy/paste the code please ignore a space before "a" & "/a" both in Code & Example section.

No comments:

Post a Comment