WD 14a & 14b. IntroToCss_Internal&ExternalCSS

 <!-- CSS starting from here -->

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Inline,Internal and External CSS</title>
    <style>
        p{
            color: purple !important;
            background-color: seagreen !important;
        }
    </style>
    <link rel="stylesheet" href="13b. tutorial.css">
</head>
<body>
    <h3>This is CSS Tutorial</h3>
    <!-- <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>

#WD 14b. tutorial // css file
p{
    color: greenyellow;
    background-color: hotpink;
}

#Output:


Comments

Popular posts from this blog

JAVA Lab Programs

HANGMAN GAME

WD 22. StylingLinks&Buttons