Here is my code
JavaScript
x
3
1
<a href="#" ><font style="color:#000000;">
2
PLEASE CLICK HERE FOR MORE DETAILS</font> </a>
3
Here, Hyperlink is given to whole word PLEASE CLICK HERE FOR MORE DETAILS
I need to give hyperlink on mouse hover to the text HERE
Is it possible using html itself or I need to go with JavaScript/Jquery?
Advertisement
Answer
Try this
JavaScript
1
2
1
<font style="color:#000000;">PLEASE CLICK <a href="#" >HERE</a> FOR MORE DETAILS</font>
2
Add styles
JavaScript
1
7
1
a {
2
text-decoration:none;
3
}
4
a:hover{
5
text-decoration:underline;
6
}
7