This commit is contained in:
2023-02-07 16:48:43 -06:00
parent ae21d2d343
commit 30567e99a9
85 changed files with 1723 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<!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;}
#box { background-color: #74C0FF;
margin-left: 60px;
padding: 5px 10px;
}
</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>