Edit This Code:
See Result »
<
!DOCTYPE
html
>
<
html
>
<
head
>
<
style
>
a.highlight:hover
{
color
:
#ff0000
;
}
<
/style
>
<
/head
>
<
body
>
<
p
>
<
a
class
="highlight"
href
="css_syntax.asp.html"
>
CSS Syntax
<
/a
>
<
/p
>
<
p
>
<
a
href
="default.asp.html"
>
CSS Tutorial
<
/a
>
<
/p
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <head> <style> a.highlight:hover { color: #ff0000; } </style> </head> <body> <p><a class="highlight" href="css_syntax.asp.html">CSS Syntax</a></p> <p><a href="default.asp.html">CSS Tutorial</a></p> </body> </html>
Result:
Privacy Policy