CSS Box
CSS Box
DOCTYPE html>
<head>
<style>
.main{
font-size:30px;
font-weight: bold;
text-align: center;
.gfg{
margin-left: 200px;
width: 600px;
height:200px;
text-align:center;
padding:100px;
text-align:center;
.gfg1{
font-size:40px;
font-weight:bold;
color: white; margin-top:60px; background-color: #034f84; text-align: center;
.gfg2{
font-size:20px;
</style>
</head>
<body>
<center>
<div class="main">CSS Box-Model Property</div >
<div class="gfg">
<div class="gfg2">A CSS box model is a compartment that includes numerous assets,
such as edge, border, padding and material. It is used to develop the design and
structure of a web page. It can be used as a set of tools to personalize the layout
of different components. According to the CSS box model, the web browser supplies
each element as a square prism.</div>
</div>
</center>
</body>
</html>