Day2-Exercise4(To Demonstrate Style-sheets)
<! To Demonstrate Stylesheets>
<html>
<head>
<style>
p
{
border:1px solid powderblue;
padding:30px;
}
</style>
</head>
body
<h1>Heading</h1>
<p>paragraph</p>
<p>paragraph</p>
<p>paragraph</p>
</body>
</html>
<html>
<head>
<style>
p
{
border:1px solid powderblue;
padding:30px;
}
</style>
</head>
body
<h1>Heading</h1>
<p>paragraph</p>
<p>paragraph</p>
<p>paragraph</p>
</body>
</html>
Comments
Post a Comment