-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml_links.html
37 lines (37 loc) · 1.04 KB
/
html_links.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>HTML Links Example</title>
<style>
a:link{
color: green;
background-color: transparent;
text-decoration: none;
}
a:visited{
color: pink;
background-color: transparent;
text-decoration: none;
}
a:hover{
color: red;
background-color: transparent;
text-decoration: underline;
}
a:active{
color: yellow;
background-color: transparent;
text-decoration: underline;
}
a:focus{
color: aqua;
background-color: brown;
text-decoration: overline;
}
</style>
</head>
<body>
<p>You can change default coulor of links</p>
<a href="CSS_examples.html" target="_blank"> HTML_LINK</a>
</body>
</html>