-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_template.html.unused
More file actions
42 lines (36 loc) · 1.26 KB
/
Copy path_template.html.unused
File metadata and controls
42 lines (36 loc) · 1.26 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
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>NGAPS - NASA Goddard Association of Postdoctoral Scientists</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/nav.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<script src="js/includeHTML.js"></script>
<script src="js/collapsible.js"></script>
<script src="js/nav.js"></script>
<body>
<!-- Navigation Bar -->
<div class="topnav" id="myTopnav">
<a href="index.html" class="nav_button nav_active">Home</a>
<a href="events.html" class="nav_button">Events and Calendar</a>
<a href="living.html" class="nav_button">Living @Goddard</a>
<a href="working.html" class="nav_button">Working @Goddard</a>
<a href="about_us.html" class="nav_button">About Us</a>
<a href="javascript:void(0);" class="icon" onclick="navCollapseFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<!-- Navigation end -->
<!-- Main Content -->
<!-- Main Content - END -->
<!-- Footer Start -->
<div include-html="footer.html"></div>
<!-- Footer End -->
<script>
includeHTML();
</script>
</body>
</html>