-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (42 loc) · 1.5 KB
/
index.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
50
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-do </title>
<!-- Css -->
<link rel="stylesheet" href="style.css">
<!-- Links -->
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
</head>
<body>
<section class="flex-section">
<nav class="inicio">
<div class="inicio-titulo">
<h1> To-do List </h1>
</div>
<div class="data-inputs">
<div class="h2-container">
<h2>Preencha os campos abaixo:</h2>
</div>
<div class="data-inputs-title">
<input type="text" name="" id="inputTitulo" class="" required="required">
<label for="inputTitulo"> TÍTULO </label>
</div>
<div class="data-inputs-desc">
<textarea name="" id="descricao" required></textarea>
<label for="descricao" class="desc-label">DESCRIÇÃO</label>
</div>
<div class="inicio-button">
<button id="adicionarBotao" > + Adicionar</button>
</div>
</div>
</nav>
<section class="toDo-cards">
<div class="cards-position" id="cardPosition">
</div>
</section>
</section>
</body>
<script src="script.js"></script>
</html>