-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbox_model.html
More file actions
31 lines (31 loc) · 804 Bytes
/
box_model.html
File metadata and controls
31 lines (31 loc) · 804 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Box Model Practice</title>
<style>
div{
margin: auto;
width: 500px;
height: 500px;
padding: 30px;
background-color: chocolate;
border: black dashed 5px;
}
p{
margin: 0;
color: #222222;
font-size: 30px;
}
</style>
</head>
<body>
<div>
<p>
Can babies breathe through their mouths? <br><br>
Newborns are "obligate nose breathers." This means they can't breathe through their mouths in the first few
months of life. Because babies have small nasal passages, they sound stuffy when they breathe.
</p>
</div>
</body>
</html>