CSS-Cascading Style Sheet Tutorial.html

 <!DOCTYPE html>

<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CSS-Cascading Style Sheet Tutorial</title>
    <style>
        p {
            color:rgb(23117079);
            background-colorseagreen !important;
        }
        </style>
        <link rel="stylesheet" href="tut13.css">
</head>

<body>
    <h1>This is CSS Tutorial</h1>
    <!-- <p style="color:red;background-color: yellow;">This tutorial will teach you
         everything you  need to know about HTML/CSS</p> -->

    <p>This tutorial will teach you everything you
        need to know about HTML/CSS</p>



</body>

</html>

Comments

Popular posts from this blog

automation fitness center project synopsis

CSS : Position, absolute, relative ,fixed and sticky(tut25).html