-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (40 loc) · 1.54 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!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">
<title>Quicky</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="app-wrapper">
<div id="app">
<div class="but" id="menu" onclick="menu()" style="display: none;">
<img src="menu.svg" alt="">
</div>
<div id="sidebar">
<div class="heading">
<h2 id="projectName">Quicky</h2>
<div id="newPage">+</div>
</div>
<ul id="notes-list" class="list">
</ul>
<form>
<input id="search" type="search" placeholder="Search..." />
<button onclick="pdf()" style="z-index: 9999;" id="download">Download</button>
</form>
</div>
<div id="note">
<textarea class="form-control note-title" id="addTitle" placeholder="Title" required></textarea>
<textarea class="form-control note-content" id="addTxt" placeholder="Enter your text..." required></textarea>
</div>
</div>
<div class="floating-container">
<div class="floating-button" id="addBtn">ADD</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.3/jspdf.min.js"></script>
<script src="index.js"></script>
</body>
</html>