-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (65 loc) · 2.36 KB
/
Copy pathindex.html
File metadata and controls
70 lines (65 loc) · 2.36 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@600&family=Roboto+Mono:wght@700&display=swap"
rel="stylesheet"
/>
<script src="./script.js" defer></script>
<link
rel="shortcut icon"
href="./assets/ampulheta.png"
type="image/x-png"
/>
<title>Habits(e)</title>
</head>
<body>
<header>
<img src="./assets/logo.svg" alt="Logo da aplicação de Hábitos" />
<button>
<img src="./assets/plus.svg" alt="Sinal de adição" />
<span>Registrar meu dia</span>
</button>
</header>
<form action="" id="form-habits">
<div class="habits">
<div class="habit" data-name="study">📖</div>
<div class="habit" data-name="run">🏃🏽</div>
<div class="habit" data-name="diet">🍎</div>
<div class="habit" data-name="vegetables">🍆</div>
<div class="habit" data-name="beer">🍺</div>
<div class="habit" data-name="floss">🦷</div>
<div class="habit" data-name="sleep">🛌🏽</div>
</div>
<div class="days"></div>
<!-- <div class="days">
<div class="day">
<div>03/01</div>
<input type="checkbox" name="run" />
<input type="checkbox" name="water" />
<input type="checkbox" name="food" />
checked - posso colocar este atributo dentro da tag para ver sua aparencia quando estiver marcado
</div>
<div class="day">
<div>04/01</div>
<input type="checkbox" name="run" />
<input type="checkbox" name="water" />
<input type="checkbox" name="food" />
</div>
<div class="day">
<div>05/01</div>
<input type="checkbox" name="run" />
<input type="checkbox" name="water" />
<input type="checkbox" name="food" />
</div>
</div> -->
</form>
<!-- Biblioteca que será utilizada na aplicação -->
<script src="https://cdn.jsdelivr.net/gh/maykbrito/libs/NLWSetup/source/NLWSetup.js"></script>
</body>
</html>