-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 960 Bytes
/
index.html
File metadata and controls
33 lines (32 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>Box Model</title>
</head>
<body>
<h2>The CSS Box Model</h2>
<div id="main_box">
<div id="margin">
Margin
<div id="border">
Border
<div id="padding">
Padding
<div id="content">
Content
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<p>
More info <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model"
target="_blank">here</a>
</p>
</div>
</body>
</html>