-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
19 lines (19 loc) · 782 Bytes
/
Copy pathindex.html
File metadata and controls
19 lines (19 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dark Mode Toggle</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<div class="toggle-container">
<input type="checkbox" id="toggle" name="toggle"><label for="toggle"></label>
</div>
<div class="wrapper">
<h1>Dark Theme Mode</h1>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. A esse, qui perferendis dolorum rem ad unde aliquid, veniam molestias molestiae hic quis eligendi! Ab vitae quae quidem quasi maiores officia doloribus expedita obcaecati voluptas temporibus sit a porro, beatae consequuntur.</p>
</div>
</body>
</html>