<html>
<head>
<style type="text / css">
div{
margin : 50px;
border -style : dashed;
padding : 50px;
background-color : grey;
text -align : center ;
font -size : 20px ;
}
</style>
<body>
<div>
contoh box model
</div>
</body>
</html
<html>
<head>
<title> belajar CSS box model </title>
<style type="text/css">
p {
border-style : groove ;
border-width : 6px ;
}
div {
border-style : dashed ;
border-width : 2px ;
}
</style>
</head>
<body>