Answers for "dark html code"

0

how to make a dark mode html

<!DOCTYPE html>
<html>
    <head><title>How to Dark Mode in HTML5</title></head>
    <body>
        <button onclick="darkMode()">Click me</button>
    </body>
    <script>
        function darkMode() {
            if (document.body.style.backgroundColor == "black") {
                document.body.style.backgroundColor = "white";
            } else {
                document.body.style.backgroundColor = "black";
            }
            console.log(document.body.style.backgroundColor);   // ctrl + j and you can see which mode you're in
        }
    </script>
</html>
Posted by: Guest on February-09-2022
0

dark blue html code

<p style="color:#00008B">This text is dark blue</p>
Posted by: Guest on October-07-2021

Browse Popular Code Answers by Language