When I created my first blog I always used to think
why should I learn HTML
when I can create a blog without having knowledge of HTML.
But after some time I realized whats the importance of HTML in web designing.
Today we will discuss on some hidden HTML secrets.
This article will be very helpful for HTML beginners.
1. Creating hidden HTML Links
Yes, thats truth you can create a hidden link in HTML.
Use below method to hide any link in HTML:--
add this code in <a> tag --- style="visibility:hidden"
Example --
<a href="http://techntips.net" style="visibility:hidden">Click here</a>
2. Hiding an image behind other in HTML
This will very helpful when you need to do something exciting
Use below code to hide an image behind other in HTML:----
Example:--
<img src="url of 1st image" onmouseover="this.src='url hidden image' "
onmouseout="this.src='url 1st image' "/>
Please share this if you like this.
Contact us for your queries
why should I learn HTML
when I can create a blog without having knowledge of HTML.
But after some time I realized whats the importance of HTML in web designing.
Today we will discuss on some hidden HTML secrets.
This article will be very helpful for HTML beginners.
1. Creating hidden HTML Links
Yes, thats truth you can create a hidden link in HTML.
Use below method to hide any link in HTML:--
add this code in <a> tag --- style="visibility:hidden"
Example --
<a href="http://techntips.net" style="visibility:hidden">Click here</a>
2. Hiding an image behind other in HTML
This will very helpful when you need to do something exciting
Use below code to hide an image behind other in HTML:----
Example:--
<img src="url of 1st image" onmouseover="this.src='url hidden image' "
onmouseout="this.src='url 1st image' "/>
Please share this if you like this.
Contact us for your queries
0 comments:
Post a Comment