-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogresso.html
More file actions
79 lines (72 loc) · 2.8 KB
/
progresso.html
File metadata and controls
79 lines (72 loc) · 2.8 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" type="image/x-icon" href="https://w7.pngwing.com/pngs/821/955/png-transparent-tick-mark-correct-choice-sign-yes-icon-symbol-success-ok.png">
<title>Progresso do Site</title>
</head>
<!--Código para acompanhar o progresso do site-->
<body>
<center><div></div>
<h1>Objetivos</h1>
<ul>
<li>
<label class="container">Checkbox<input type="checkbox" checked="checked"><span class="checkmark"></span></label>
</li>
<li>
<label class="container">10 Classes CSS<input type="checkbox" checked="checked"><span class="checkmark"></span></label>
</li>
<li>
<label class="container">3 Imagens na mesma linha<input type="checkbox" checked="checked"><span class="checkmark"></span></label>
</li>
<li>
<label class="container">Cabeçalho na cor:Grey<input type="checkbox" checked="checked"><span class="checkmark"></span></label>
</li>
<li>
<label class="container">Comentar todo o código<input type="checkbox" checked="checked"><span class="checkmark"></span></label>
</li>
<li>
<label class="container">Código identado<input type="checkbox" checked="checked"><span class="checkmark"></span></label>
</li>
<li>
<label class="container">Uso das tags: ol,ul,br,hr,b,p,u<input type="checkbox" checked="checked"><span class="checkmark"></span></label>
</li>
<li>
<label class="container">1 Redirecionamento Interno<input type="checkbox" checked="checked"><span class="checkmark"></span></label>
</li>
<li>
<label class="container">1 Redirecionamento Externo<input type="checkbox" checked="checked"><span class="checkmark"></span></label>
</li>
</ul>
<h1>Bônus</h1>
<ul>
<li>
<label class="container">1 Tabela com informações<input type="checkbox" checked="checked"><span class="checkmark"></span></label>
</li>
<li>
<label class="container">1 Fonte do Google<input type="checkbox" checked="checked"><span class="checkmark"></span></label>
</li>
<li>
<label class="container">1 Carrossel com 5 imagens<input type="checkbox" checked="checked"><span class="checkmark"></span></label>
</li>
</ul>
</div></center>
<style>
body {
background-color: black;
}
li {
font-family: monospace;
font-size: 30px;
list-style: inside;
}
h1 {
font-family: monospace, italic;
font-size: 70px;
}
li, h1 {
color: white;
}
</style>
</body>
</html>