-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (26 loc) · 1.08 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Orbital Nav</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css" />
<script src="OrbitNav.js"></script>
<script src="script.js"></script>
</head>
<body>
<nav>
<div id="orbit-nav-container" class="hidden">
<button id="nav-close-btn" class="orbit-close-btn orbit-btn out">X</button>
<a href="home.html" class="orbit-nav-btn orbit-btn">Home</a>
<a href="about.html" class="orbit-nav-btn orbit-btn">About</a>
<a href="resources.html" class="orbit-nav-btn orbit-btn">Resources</a>
<a href="other.html" class="orbit-nav-btn orbit-btn">Other</a>
<a href="other.html" class="orbit-nav-btn orbit-btn">Other</a>
<a href="other.html" class="orbit-nav-btn orbit-btn">Other</a>
</div>
</nav>
<button type="button" class="button" onclick="orbitnav.toggle()">Navigation</button>
<button type="button" class="orbit-close-btn button">Close Nav</button>
</body>
</html>