-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (27 loc) · 1013 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
<!DOCTYPE html>
<html>
<head>
<script src="https://kit.fontawesome.com/1a21601ad8.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./index.css" />
</head>
<body>
<div class="bg-container">
<div class="todo-card">
<div class="msg-cont" id="msgId">
<p class="msg">Item Added</p>
</div>
<h1 class="todo-heading">TodoList</h1>
<div class="create-cont">
<h2 class="todo-task">Create <span class="task-heading">Task</span></h2>
<i class="fa-solid fa-file-pen icon"></i>
</div>
<input type="text" class="input" title="Enter a Text" placeholder="e.g. Cake" id="inputId">
<button class="add-btn" title="Add" id="addBtn">Add</button>
<ul class="ul-list-cont" id="ulListCont">
</ul>
<button class="savebtn" id="saveBtnId">Save</button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>