-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmidnav.php
More file actions
38 lines (26 loc) · 879 Bytes
/
midnav.php
File metadata and controls
38 lines (26 loc) · 879 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
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<style>
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Profile</a></li>
<li><a href="profile.php"> Dis-Abilities</a></li>
<li><a href="efforts.php"> Efforts </a></li>
<li><a href="advice.php"> Advice </a></li>
</ul>
</div>
</div>
</nav>
</body>
</html>