-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboxes.html
More file actions
30 lines (28 loc) · 1.26 KB
/
boxes.html
File metadata and controls
30 lines (28 loc) · 1.26 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Box Model</title>
<style>
.box{
width: 200px;
height: 200px;
margin: 50px 20px;
padding: 20px;
border: 4px dashed blue;
}
</style>
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="index.html" class="active">Pixels Em and Rem</a>
<a href="boxes.html">Box Model</a>
<a href="psuedoselectors.html">Psuedo Selectors</a>
<a href="targetedselectors.html">Targeted Selectors</a>
</div>
<div class="box"><h3>Box One</h3><p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Assumenda consequatur quasi deleniti dolores. Officia, fugiat autem quasi nihil voluptates amet expedita porro non, eveniet ad beatae quo assumenda error veritatis!</p></div>
<div class="box"><h3>Box Two</h3><p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Assumenda consequatur quasi deleniti dolores. Officia, fugiat autem quasi nihil voluptates amet expedita porro non, eveniet ad beatae quo assumenda error veritatis!</p></div>
</body>
</html>