Monday, February 5, 2018

CSS style

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>embedded styles</title>
    <style>
        h2.alert{
            color:red;
            font-weight: normal;
           
        }
   
   
    </style>
   
    </head>
<body>
<h1 class="alert">Using embedded styles</h1>
<h2 class="alert">Style me using the "style" element.</h2>
    <h2>Not knowing the reasons to study CSS.</h2>
</body>
</html>

No comments:

Post a Comment