-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunNavBar.html
More file actions
40 lines (27 loc) · 1.07 KB
/
Copy pathFunNavBar.html
File metadata and controls
40 lines (27 loc) · 1.07 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
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<title>
</title>
</head>
<body>
<nav class="navbar navbar-expand-sm navbar-light bg-light">
<!--Nav bar content -->
<ul class="navbar-nav mr-auto">
<li class="nav-item ">
<a class="nav-link" href="index.html">Home </a>
</li>
<li class="nav-item">
<a class="nav-link" href="Commands.html">Commands</a>
</li>
<li class="nav-item ml-auto">
<a class="nav-link" href="eVersion.html">Easy Version</a>
</li>
</ul>
</nav>
</body>
</html>