-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotesApp.html
48 lines (34 loc) · 1.51 KB
/
NotesApp.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Notes App</title>
<link rel="stylesheet" href="CSS.css">
<link rel="icon" href="../Notes_App/images/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="container">
<h1><img src="../images/notesapp.png" class="appimg" alt="">Notes</h1>
<button class="btn"><img src="../images/edit.png">Create Note</button><button class="clearB"><img src="../images/clear.jpeg">Clear All Notes</button>
<div class="notes-container">
<!-- <p contenteditable="true" class="input-box">
<img src="../images/delete-icon-png-16.jpg">
</p> -->
</div>
<div class="pop-up" id="popup">
<h2>Delete Note</h2>
<p>Want to delete this note?</p>
<div class="pop-up-btn">
<button type="button" onclick="" class="delete-btn">YES</button><button type="button" onclick="closePopup()">NO</button>
</div>
</div>
<div class="pop-up-clear" id="popup-clear">
<h2>Clear Notes</h2>
<p>Want to delete all notes?</p>
<div class="pop-up-btnc">
<button type="button" onclick="" class="clear-btn">YES</button><button type="button" onclick="closePopupCl()">NO</button>
</div>
</div>
</div>
<script src="notesapp.js"></script>
</body>
</html>