Day2-Exercise-3(To Demonstrate style-sheet)
<!To Demonstrate style-sheet>
<html>
<head>
<style>
body {background-color:powderblue;}
h1
{color:blue;}
p
{color:red;}
</style>
</head>
<h1>This is a Heading</h1>
<p>this is a Paragraph</p>
</body>
</html>
<html>
<head>
<style>
body {background-color:powderblue;}
h1
{color:blue;}
p
{color:red;}
</style>
</head>
<h1>This is a Heading</h1>
<p>this is a Paragraph</p>
</body>
</html>
Comments
Post a Comment