-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (27 loc) · 908 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo List App</title>
<link rel="stylesheet" href="todo.css">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
</head>
<body>
<div class="container">
<div class="todo">
<h2>To-Do List <i class="fa-solid fa-clipboard-list fa-flip fa-xl" style="color: #7f9ccc;"></i></h2>
<div class="row">
<input type="text" id="input-bar" placeholder="Add your task">
<button type="button" class="btn" onclick="addTask();">Add</button>
</div>
<ul id="list-container">
</ul>
</div>
</div>
<script src="todo.js"></script>
</body>
</html>