-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 856 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>ToDoList</title>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div id="card">
<h1>To-Do List<img src="./assets/todolist.png" height="50px" style="margin-left: 10px;"></h1>
<div id="row">
<input type="text" placeholder="Add task here" id="input-box">
<button>Add</button>
</div>
<div id="listcontainer"></div>
<ul id="task-container">
</ul>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="script.js" charset="UTF-8"></script>
</body>
</html>