CSS applying different ways

 <!DOCTYPE html>

<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" href="CSS_tutorial/style.css">
        <title>Different ways to apply CSS</title>
        <!-- <style>
            h1{
                color: green;
            }
        </style> -->
    </head>
    <body>
        <!-- <h1 style="color: red">Heading</h1> -->
         <h1>Heading</h1>
    </body>
</html>



h1{
    color: blue;
}





Comments