Day2-exercise-6(To represent style-sheets using class0

<!To represent stylesheets using class>
<html>
<head>
<style>
p.error
{
 color:blue;
}
</style>
</head>
<body>
<h1>Heading</h1>
<p class="error">paragraph</p>
<p>paragraph</p>
<p>paragraph</p>
<p class="error">paragraph</p>
</body>
</html>

Comments