-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.14 KB
/
index.html
File metadata and controls
29 lines (29 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="./assets/fonts/fonts.css">
<title>To Do List | GN</title>
</head>
<body>
<h1>To Do List | GN</h1>
<div class="content">
<div class="content--add-item">
<input type="text" id="input-new-task" placeholder="Digite sua nova task">
<button onclick="newTask()" id="btn-new-task" title="Clique aqui para adicionar uma nova task">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-plus-lg" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z"/>
</svg>
</button>
</div>
<div class="content--body">
<ol id="to-do-list">
</ol>
</div>
</div>
</body>
<script src="script.js"></script>
</html>