-
Notifications
You must be signed in to change notification settings - Fork 0
/
nav.html
31 lines (18 loc) · 954 Bytes
/
nav.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
<link rel="stylesheet" href="cssfolder/main.css">
<div class = "Nav_container">
<div id = "navlinks" class="navlinks"> <!-- container for links -->
<div class="left side"> <!-- Left side of navbar -->
<a class="Text" href="index.html">Home</a>
<a class="Text" href="projects.html">Projects</a>
<a class="Text" href="experience.html">Experience</a>
</div>
<div class="right side"> <!-- Right side of navbar -->
<a class="Text" href="index.html#contact" onclick="contactclick()">Contact</a>
<a class="Text" href="">Resume</a>
<a class="Text" href="https://github.com/BigBirdTheGreat"><img src="Images/github.svg" alt="Github Logo"></a>
</div>
</div>
<img id = "menu" class = "menu" src="Images/menu.svg" alt="menu">
<img id = "exit" class = "exit" src="Images/x.svg" alt="exit">
</div>
<script src="main.js"></script>