<body>
<h1>Welcome to our website</h1>
<p>This is our really pretty website..</p>
<input onclick="myFunction()" type="checkbox" name="checkbox" class="switch">
<script src="js/external.js"></script>
body {
padding: 25px;
background-color: white;
color: black;
font-size: 25px;
}
.dark-mode {
background-color: black;
color: white;
}
function myFunction() {
var element = document.body;
element.classList.toggle("dark-mode");
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.