-
Notifications
You must be signed in to change notification settings - Fork 0
/
pseudoelementos.html
41 lines (39 loc) · 1.08 KB
/
pseudoelementos.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Links</title>
<style>
body{
font-family: Arial, Helvetica, sans-serif;
}
a {
color: black;
text-decoration: none;
font-weight: bold;
}
a:visited {
color: cadetblue;
}
a:hover {
color: black;
text-decoration:underline;
}
a:active {
color: black;
}
</style>
</head>
<body>
<h1>Pseudo Elementos</h1>
<hr>
<h4>Personalizando Links</h4>
<ul>
<li> <a href="https://github.com/felipecod-coder" target="_blank">Perfil GitHub</a></li>
<li> <a href="https://www.instagram.com/felipealves_life/" target="_blank">Perfil instagram</a></li>
<li> <a href="https://www.threads.net/@felipealves_life" target="_blank">Perfil Threads</a></li>
</ul>
<a href="Seletores.html" rel="prev">Voltar</a>
</body>
</html>