- <html>
- <head>
- <meta name="color-scheme" content="light">
- </head>
- </html>
- <body><br><br><br>
- <h1>Dark & Light Mode </h1>
- <select id="ab" onchange="change()">
- <div > <option value="light">Light</option>
- <option value="dark">Dark</option></div>
- </select>
- </body>
- </html>
- <script>
- function change()
- {
- const ab= document.getElementById("ab").value;
- document.getElementsByTagName("meta")[0].content = ab;
- }
- </script>
No comments:
Post a Comment