-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 898 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) · 898 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
<!DOCTYPE html>
<html>
<head>
<title>Notepad</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/x-icon" href="favicon.png" />
</head>
<body>
<div class="container">
<h1>📝Notepad</h1>
<div class="notebook">
<textarea id="note"></textarea>
</div>
<div class="bottom">
<div class="theme-switcher">
<div class="buttons">
<button id="save-btn">Save</button>
<button id="clear-btn">Clear</button>
</div>
</div>
<div class="switch">
<label class="switch_checkbox">
<input type="checkbox" id="theme-switch" />
<span class="slider round"></span>
</label>
<span class="theme-switcher__icon">☀️</span>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>