-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (35 loc) · 1.05 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" />
<title>To Do App</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/build/pure-min.css"
integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Lato"
rel="stylesheet"
/>
</head>
<body>
<main class="todo">
<form class="todo__form">
<input
class="todo__form-input"
name="toDoTask"
placeholder="Your Task"
/>
<button class="todo__form-btn" type="submit">Add Task</button>
</form>
<div class="todo__task">
<ul class="todo__list"></ul>
</div>
</main>
<script src="scripts.js"></script>
</body>
</html>