forked from DevaGaneshB/HTML
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexp37.html
More file actions
19 lines (19 loc) · 701 Bytes
/
exp37.html
File metadata and controls
19 lines (19 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!--Html code to demonstrate css links-->
<html>
<head>
<style>
a.ho1:hover{color:yellow;}
a.ho2:hover{font-size:200%;}
a.ho3:hover{background:green;}
a.ho4:hover{font-family:times new roman;}
a.ho5:hover{text-decoration:underline;}
</style>
</head>
<body>
<a class="ho1" href="http://www.facebook.com">This link changes color</a><br>
<a class="ho2" href="http://www.facebook.com">This link changes font size</a><br>
<a class="ho3" href="http://www.facebook.com">This link changes background</a><br>
<a class="ho4" href="http://www.facebook.com">This link changes font family</a><br>
<a class="ho5" href="http://www.facebook.com">This link underline the textt</a><br>
</body>
</html>