-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (25 loc) · 772 Bytes
/
index.html
File metadata and controls
29 lines (25 loc) · 772 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
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<title>Bootstrap Assignments!</title>
</head>
<body>
<nav class="navbar navbar-default navbar-static-top">
<ul class="nav navbar-nav">
<li><a href="index.html">index.html</a></li>
<li><a href="pages/college.html">college.html</a></li>
<li><a href="pages/store.html">store.html</a></li>
</ul>
</nav>
<div class="container-fluid">
<div class="row">
<h1 class="text-center">My Bootstrap Assignments</h1>
<p class="text-center">First Name Last Name</p>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-6">Hello</div>
<div class="col-xs-12 col-md-6">World</div>
</div>
</body>
</html>