-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path06_links_css.html
More file actions
56 lines (46 loc) · 1.01 KB
/
06_links_css.html
File metadata and controls
56 lines (46 loc) · 1.01 KB
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
50
51
52
53
54
55
56
<!doctype html>
<html lang="pt-br">
<head>
<title>pagina de exemplo estrutura basica</title>
<meta charset="utf-8">
<meta name="author" content="lucas">
<meta name="description" content="lista de documentos">
<meta name="keywords" content="html5, tecnologia">
<style>
body {
font-family: sans-serif;
color: green;
}
a:link {
color: green;
}
a:hover {
background-color: #ccc;
}
a:visited {
color: red;
}
a:active {
color: orange;
}
ul li {
list-style-type: circle;
}
</style>
</head>
<body>
<a href="02_tags.html">veja o arquivo 02</a>
<a href="03_curriculo.html">veja o curriculo/a>
<ul>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ul>
<ol>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ol>
<p>Paragrafo 1</p>
</body>
</html>