-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 859 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
<!DOCTYPE html>
<html>
<head>
<!--Meta Tags-->
<meta charset="utf-8" />
<title>Dark Mode Demo</title>
<meta name="description" content="A simple Dark mode switcher" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<!--External Files-->
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
</head>
<body>
<h1><span id="themeName">Light</span> Mode</h1>
<div id="switchBG" onclick="themeSwitch()">
<div id="switchFG">
<img src="images/sun.svg" id="switchIcon" />
</div>
</div>
<div id="description">
The website defaults to system theme unless you use the button.
</div>
</body>
</html>