How to embedded style sheet (CSS) on HTML page

1 Answer

0 votes
<!DOCTYPE html> 
<html> 
    <head>
        <style>    
            body {    
                background-color: #333333;    
            }    
            h1 {    
                color: red;    
            }     
        </style>    
    </head>
    <body> 
        <h1>HTML & CSS</h1>
    </body> 
</html>

 



answered Oct 8, 2019 by avibootz
...