-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
32 lines (27 loc) · 1.08 KB
/
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
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
<link rel="stylesheet" href="Styles.css">
<title>Notes App</title>
</head>
<body>
<div class="header">
<button id="add" style="border-radius: 10px; padding: 30px;">
<i class="fas fa-plus"></i> Add Note
</button>
<input style="color: #262525; background-color: #e7dddd; border-radius: 10px;" type="text" id="search" placeholder="Search notes..."></div>
<div class="notes-container" id="notes-container"></div>
<div class="modal" id="modal">
<div class="modal-content">
<span class="close" id="close">×</span>
<input type="text" id="modal-title" placeholder="Title">
<textarea id="modal-textarea" placeholder="Note..."></textarea>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/marked/1.2.2/marked.min.js"></script>
<script src="script.js"></script>
</body>
</html>