-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (24 loc) · 1017 Bytes
/
index.html
File metadata and controls
36 lines (24 loc) · 1017 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notes</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="https://i.ibb.co/Q8Bmh0n/images.png" type="image/png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="toggle-container">
<label class="toggle" id="toggleBackground">
<input type="checkbox" id="modeToggle">
<span class="slider" id="slider"></span>
</label>
</div>
<input type="text" id="noteTitle" placeholder="Enter A Title For Your Note" style="border: none">
<textarea id="userText" placeholder="Start Writing Your Notes"></textarea>
<br>
<button onclick="downloadText()" id="downloadButton"><i class="fa fa-download"></i> Download</button>
<script src="script.js"></script>
</body>
</html>