ASDV-WebDev/Semester 1/Chapter ZIPs/HTML/chapter6/box3.html

28 lines
624 B
HTML

2023-02-07 16:48:43 +07:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Examples of the Box Model</title>
<meta charset="utf-8">
<style>
body { background-color: #FFFFFF;
}
h1 { background-color: #D1ECFF;
padding-left: 60px;
border-bottom: 3px ridge #330000;
}
#box { background-color: #74C0FF;
margin-left: 60px;
padding: 5px 10px;
border: 1px solid #000000;
border-radius: 15px;
}
</style>
</head>
<body>
<h1>Examples of the Box Model</h1>
<div id="box">HTML elements display as boxes on web pages. This div element is configured to have a blue background. </div>
</body>
</html>