Files
dark-mode-example/index.html
T
2020-04-29 12:56:11 -04:00

15 lines
386 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="dark-mode.css">
</head>
<body class="light">
<h1>Welcome to the dark side</h1>
<button class="dark-mode-toggle">Click me!</button>
<script src="dark-mode.min.js"></script>
</body>
</html>