• OzzModz is no longer taking registrations. All registrations are being redirected to Snog's Site
    All addons and support is available there now.

How to open link to new tab

Please [MENTION=1]Ozzy47[/MENTION] can you post me open link to new tab and Clickable Image HTML Code ?

This code Open link to new tab

Code:
<a href="photoshop.php">PhotoShop</a>

Clickable Image HTML Code

Code:
<img src="index_files/images/bigslide2.jpg" title="Project 2" alt="slide2" />
                <span class="desc">Nil Noyona By Nahin Tunajjina Radit. <a href="forum51/thread208416.html">Read more</a></span>
 
Wouldn't it just be something like:

Code:
<a href="photoshop.php" target="_blank">
    <img src="index_files/images/bigslide2.jpg">
    </img>
</a>
 
Actually you don't need the closing img tag, do it like this.

Code:
<a href="photoshop.php" target="_blank">
    <img src="index_files/images/bigslide2.jpg" />
</a>
 
Whatttt I've been closing that stupid tag all these years for nothing?? :) Does the slash before the closing bracket just close itself?
 
Back
Top