Files
dark-mode-example/index.html
T
2020-04-29 13:31:53 -04:00

18 lines
644 B
HTML

<!doctype html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Welcome to the dark side</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="dark-mode.css">
</head>
<body class="light">
<h1>Welcome to the dark side</h1>
<p><a href="https://github.com/jakejarvis/dark-mode-example" target="_blank" rel="noopener">View the source code.</a></p>
<button class="dark-mode-toggle">💡 You know you want to click this</button>
<script src="dark-mode.min.js"></script>
</body>
</html>