-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathBootstrapOne.html
More file actions
33 lines (32 loc) · 950 Bytes
/
BootstrapOne.html
File metadata and controls
33 lines (32 loc) · 950 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>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<style type="text/css">
div {
text-align: center;
}
.header, .footer {
height: 25px;
background-color: orange;
border: 1px solid black;
}
.nav, .body {
height: 200px;
background-color: yellow;
border: 1px solid black;
}
</style>
</head>
<body>
<!-- Add the correct Bootstrap classes to achieve the desired result. The styling defined above has already been applied. -->
<div class="">
<div class="header">Header</div>
<div class="nav">Nav</div>
<div class="body">Body</div>
<div class="footer">Footer</div>
</div>
</body>
</html>