<!doctype html>
<html>
<head>
<style>
h3 {
text-align: center;
color: maroon;
}
#d1 {
background-color: rgb(57, 212, 57);
}
#d2 {
background-color: yellow;
}
#d3 {
background-color: rgb(248, 112, 135);
}
#d1, #d2, #d3{
padding: 80px;
text-align: center;
}
</style>
<title>Mera div</title>
</head>
<body>
<h3>Dividing HTML Page by using <div> Tag</h3>
<div class="section">
<div id="d1">
Section 1
</div>
<div id="d2">
Section 2
</div>
<div id="d3">
Section 3
</div>
</div>
</body>
</html>

Comments
Post a Comment