-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (24 loc) · 916 Bytes
/
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
<html lang="en" data-theme="light">
<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">
<link rel="stylesheet" href="style.css">
<title>Adding dark theme to your site</title>
</head>
<body class="fouc">
<!-- container -->
<div class="container">
<h1>Try it</h1>
<p>When u visit first time take your broswer preference for dark or light mode,
When u chose light or dark it remember with local storage</p>
<div class="toggle-container">
<span class="sun">☀️</span>
<input type="checkbox" id="switch" name="theme" /><label for="switch">Toggle</label>
<span class="moon">🌜</span>
</div>
</div>
<!-- close container -->
<script src="main.js"></script>
</body>
</html>