Code
Execute
<
!DOCTYPE
html
>
<
html
>
<
head
>
<
style
>
a:hover
{
color
:
green
;
}
<
/style
>
<
/head
>
<
body
>
<
p
>
<
b
>
<
a
href
="http://www.wikitechy.com/"
target
="_blank"
>
Wikitechy
<
/a
>
<
/b
>
<
/p
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <head> <style> a:hover { color: green; } </style> </head> <body> <p> <b> <a href="http://www.wikitechy.com/"target="_blank"> Wikitechy</a> </b> </p> </body> </html>
Result