17 lines
448 B
HTML
17 lines
448 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta charset="UTF-8">
|
|
<title>Darkmode</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<h2>Toggle Dark/Light Mode</h2>
|
|
<p>Click the button to toggle between dark and light mode for this page.</p>
|
|
|
|
<button onclick="switchLightDark()">Toggle dark mode</button>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html> |