-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (25 loc) · 887 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="assets/style.css">
<script src="https://kit.fontawesome.com/f26c9ec4a7.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="todos-bg-container">
<div class="container">
<h1 class="todos-heading">Todo App</h1>
<h1 class="create-task-heading">
Create <span class="create-task-heading-subpart">Task</span>
</h1>
<input type="text" class="todo-user-input" />
<button class="add-todo-button">Add</button>
<ul class="todo-items-container" id="todoItemsContainer"></ul>
</div>
<p class="com"></p>
</div>
<script src="assets/main.js"></script>
</body>
</html>