-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 799 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (27 loc) · 799 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mode Toggle</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/png" href="images/Mode_Toggle_Logo.png" />
</head>
<body>
<div class="wrapper">
<div class="card">
<h1>Dark & Light Mode</h1>
<div class="toggle">
<div class="switch" id="toggleBtn">
<div class="circle">
<span class="icon sun">☀️</span>
<span class="icon moon">🌙</span>
</div>
</div>
</div>
<h2 id="modeText">Light Mode ☀️</h2>
</div>
</div>
<script src="script.js"></script>
</body>
</html>