-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinks.html
49 lines (36 loc) · 920 Bytes
/
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
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<title>Formatando links</title>
<meta charset="UTF-8">
<style type="text/css">
a {
color: orange;
padding: 5px 10px;
text-decoration: none;
}
/* Links não visitados*/
a:link {
color: #b9c941;
}
/* Links visitados*/
a:visited {
color: red;
}
/* Links hover, passa o cursor sobre o link*/
a:hover {
color: aqua;
background: #b9c941;
}
/* Links Ativos, quando clicado*/
a:active {
color: blueviolet;
}
</style>
</head>
<body>
<a href="https://www.google.com.br/?gws_rd=cr&ei=IiimWP3yMcjAwAS9_Y2gCw">Google</a> |
<a href="https://www.uol.com.br/">UOL</a> |
<a href="https://www.casasbahia.com.br">Casas Bahia</a> |
</body>
</html>