How to embed CSS in HTML

1 Answer

0 votes
<!DOCTYPE html>
<html>
    <head>
        <style>
            body {
                background-color: lightcyan;
            }
            h1 {
                color: blue;
            }
        </style>
    </head>
    <body>
        <h1>Embed CSS in HTML Example</h1>
    </body>
</html>

 



answered Nov 20, 2018 by avibootz

Related questions

2 answers 153 views
153 views asked Jun 18, 2023 by avibootz
1 answer 195 views
195 views asked Jun 27, 2021 by avibootz
2 answers 225 views
1 answer 186 views
1 answer 185 views
1 answer 215 views
...