forked from reprograma/T9-Projeto2-TodoList
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (31 loc) · 1.27 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>ToDo List T9</title>
<script src="script.js"></script>
</head>
<body>
<div class="flex">
<div class="todo__container">
<h1 class="todo__title">Adicione uma tarefa</h1>
<form action="" class="todo-form" id="todoForm">
<input type="text" name="tarefa" class="todo-form__input" placeholder="Insira sua tarefa"
id="todoInput">
<input type="submit" value="Add" class="todo-form__btn" id="todoSubmit">
</form>
<div class="todo__tarefas" id="todoTarefas">
<ul class="todo__tarefas-lista" id="todoLista">
</ul>
</div>
<div class="todo__btn-container">
<button class="todo__tudo-feito" id="todoMarcarTodos">Marcar todos</button>
<button class="todo__remover-todos" id="todoRemoverTodos">Limpar Lista</button>
</div>
</div>
</div>
</body>
</html>