-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (27 loc) · 929 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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>My To Do List</title>
</head>
<body>
<h4 class="title">TO DO LIST</h4>
<div class="sec1">
<input type="text" class="notesTitle" placeholder="Add your notes title">
<textarea id="input" placeholder="Add your notes here" cols="30" rows="10"></textarea>
<div class="btns">
<button class="btn addBtn">Add Note</button>
<button class="btn clearAllBtn">Clear All Notes</button>
</div>
</div>
<div class="sec2">
<h3 class="noteTitle">MY NOTES</h3>
<div class="notesList">
</div>
</div>
<script src="index.js"></script>
</body>
</html>