-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.html
50 lines (47 loc) · 3.32 KB
/
navbar.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<div id="navigationbar" class="navbar fixed-top navbar-expand-lg navbar-dark">
<a id="main-logo-container" href="index.html">
<img id="main-logo" class="navbar-brand" src="images/logo.svg" alt="HackNUthon">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div id="navbarContent" class="collapse navbar-collapse rounded">
<ul class="navbar-nav mx-md-auto text-center rounded">
<li class="nav-item mt-3 mt-md-auto">
<a href="index.html" class="nav-link nava">Home</a>
</li>
<li class="nav-item">
<a href="index.html#about-us" class="nav-link scroll-onclick nava">About Us</a>
</li>
<li class="nav-item">
<a href="index.html#sponsors" class="nav-link scroll-onclick nava">Sponsor</a>
</li>
<li class="nav-item dropdown">
<a href="#" id="supportDropdown" class="nav-link nava" role="button" data-toggle="dropdown" aria-expanded="false" aria-haspopup="true">
Support
</a>
<div class="dropdown-menu" aria-labelledby="supportDropdown">
<a href="#footer" class="dropdown-item">Contact Us</a>
<a href="faq.html" class="dropdown-item">FAQs</a>
<a href="learning-resources.html" class="dropdown-item">Learning Resources</a>
</div>
</li>
</ul>
<ul class="navbar-nav">
<li class="nav-item py-1">
<a href="details.html" class="nav-link btn btn-outline-primary navbtn">Details</a>
</li>
<li class="nav-item py-1">
<a href="apply.html" class="nav-link btn btn-outline-primary navbtn">Apply Now</a>
<!-- <a href="https://devfolio.co/external-apply/hacknuthon2020" class="nav-link btn btn-outline-primary navbtn"> -->
<!-- <svg class="logo" xmlns="http://www.w3.org/2000/svg" fill="#00afef"viewBox="0 0 115.46 123.46" style="height:24px;width:24px;margin-right:8px"> -->
<!-- <path d="M115.46 68a55.43 55.43 0 0 1-50.85 55.11S28.12 124 16 123a12.6 12.6 0 0 1-10.09-7.5 15.85 15.85 0 0 0 5.36 1.5c4 .34 10.72.51 20.13.51 13.82 0 28.84-.38 29-.38h.26a60.14 60.14 0 0 0 54.72-52.47c.05 1.05.08 2.18.08 3.34z" /> -->
<!-- <path d="M110.93 55.87A55.43 55.43 0 0 1 60.08 111s-36.48.92-48.58-.12C5 110.29.15 104.22 0 97.52l.2-83.84C.38 7 5.26.94 11.76.41c12.11-1 48.59.12 48.59.12a55.41 55.41 0 0 1 50.58 55.34z"/> -->
</svg>
<!-- Apply with Devfolio -->
<!-- </a> -->
<!-- <button id="devfolio-apply-now"><svg class="logo" xmlns="http://www.w3.org/2000/svg" fill="#fff"viewBox="0 0 115.46 123.46" style="height:24px;width:24px;margin-right:8px"><path d="M115.46 68a55.43 55.43 0 0 1-50.85 55.11S28.12 124 16 123a12.6 12.6 0 0 1-10.09-7.5 15.85 15.85 0 0 0 5.36 1.5c4 .34 10.72.51 20.13.51 13.82 0 28.84-.38 29-.38h.26a60.14 60.14 0 0 0 54.72-52.47c.05 1.05.08 2.18.08 3.34z" /><path d="M110.93 55.87A55.43 55.43 0 0 1 60.08 111s-36.48.92-48.58-.12C5 110.29.15 104.22 0 97.52l.2-83.84C.38 7 5.26.94 11.76.41c12.11-1 48.59.12 48.59.12a55.41 55.41 0 0 1 50.58 55.34z"/></svg>Apply with Devfolio</button> -->
</li>
</ul>
</div>
</div>