forked from yenchiah/project-website-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.html
25 lines (25 loc) · 1.08 KB
/
menu.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
<div class="menu">
<div class="menu-table flex-row-space-between">
<div class="logo flex-row-center">
<a href="index.html">Purdue Innovation Capstone</a>
</div>
<a class="menu-button" tabindex="0" href="javascript:void(0)">
<img src="img/menu.png">
</a>
<div class="menu-items flex-row-center flex-item">
<a class="menu-index" href="index.html">Overview</a>
<a class="menu-widget-extension" href="extension.html">Browser Extension</a>
<a class="menu-widget-education" href="education.html">Education</a>
<a class="menu-widget-policy" href="policy.html">Policy</a>
<div class="dropdown">
<a class="dropbtn menu-widget-resources" href="resources.html">Resources<i class="fas fa-caret-down"></i></a>
<div class="dropdown-content">
<a href="csresources.html">CS</a>
<a href="noncsresources.html">Non-CS</a>
</div>
</div>
<!-- <a href="https://github.com/yenchiah/project-website-template">GitHub</a> -->
<a class="menu-widget-about" href="about.html">About</a>
</div>
</div>
</div>