Piczo

Log in!
Stay Signed In
Do you want to access your site more quickly on this computer? Check this box, and your username and password will be remembered for two weeks. Click logout to turn this off.

Stay Safe
Do not check this box if you are using a public computer. You don't want anyone seeing your personal info or messing with your site.
Ok, I got it
Back To Graphics Home
HTML Hyperlink
Hyperlinking Text
Opening Link in New Window
Hyperlinking Image
Hyperlinking Text
Hyperlinking text is very important, but it is also very easy to do. The code for hyperlinking text is:
<a href="Link URL">Text to be Shown</a>
Where it says "URL Link" replace it with a link of your choice.
Where it says "Text to be Shown" replace it with your own text.
Example: <a href="http://www.luckyanime.co.nr>Lucky Anime</a>
Outcome: Lucky Anime
Opening Link in New Window
Although the hyperlink for the text above takes you to the destined site, it changes the whole page. If you own a site, you wouldn't want to encourage your visitors to leave your page to enter another site. It also makes it inconvenient for your viewers because if they want to go back to your site, then they'd have to click "Back" just to go back.
In this case, you should change the coding so that when the visitor clicks the link, it opens up in a new window. The only line you have to add to the original code is target="_blank">. Insert this line right after the "Link URL."
Example: <a href="http://www.luckyanime.co.nr" target="_blank>Lucky Anime</a>
Outcome: Lucky Anime
Hyperlinking Image
Just as how you can hyperlink text, you can also hyperlink an image. The code for this is:

<a href="URL Link"><img src="Image URL"></a>
You can have an enter page for your site using an image that is hyperlinked to your site. This is what I have seen many people doing with their sites.