-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (43 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>To-Do List App</title>
<!-- CSS -->
<link rel="stylesheet" href="style.css" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Oswald:[email protected]&display=swap"
rel="stylesheet"
/>
<!-- Box Icons -->
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
</head>
<body>
<!-- To-do list app -->
<div class="todo-list">
<div class="main-container">
<h1>To-Do List App</h1>
<input
id="input-item"
type="text"
name="to-do"
placeholder="Enter Item"
/>
<button class="create">Add</button>
<!-- Task Container -->
<div class="task-container">
<h2>My Tasks</h2>
<ul id="tasks"></ul>
</div>
</div>
</div>
<script src="./main.js"></script>
</body>
</html>