-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathredo.html
More file actions
36 lines (36 loc) · 1.58 KB
/
Copy pathredo.html
File metadata and controls
36 lines (36 loc) · 1.58 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
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="redo.css">
<meta charset="UTF-8">
<script src="https://kit.fontawesome.com/48a1f66a90.js" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="todos-bg-container">
<div class="container">
<div class="row">
<div class="col-12">
<h1 class="todos-heading">
Todos
</h1>
<h1 class="create-task-heading">Create <span class="create-task-heading-subpart">Task</span></h1>
<input type="text" id="todoUserInput" class="todo-user-input" placeholder="What needs to be done?">
<button class="add-todo-button" id="addTodoButton">Add</button>
<h1 class="todo-items-heading">
My <span class="todo-items-heading-subpart">Tasks</span>
</h1>
<ul class="todo-items-container" id="todoItemsContainer">
</ul>
<button class="button btn btn-primary" id="saveTodoButton">
Save
</button>
</div>
</div>
</div>
</div>
<script src="redo.js"></script>
</body>
</html>