-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.php
89 lines (83 loc) · 3.24 KB
/
header.php
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<div id="header-container" class="content-width">
<!-- Logo -->
<div id="logo-wrapper">
<div id="logo">
<a href="#"><img src="images/logo.png" align="left" alt="E-Club IIT Patna" /></a>
<p>     Entrepreneurship Club IIT Patna</p>
</div>
</div>
<!-- Menu -->
<div id="menu-wrapper">
<ul id="root-menu" class="sf-menu">
<li>
<a href="index.php" class="active">Home</a>
</li>
<li>
<a href="about-us.html">About Us</a>
<ul>
<li>
<a href="about-us.html#mission">Our Mission</a>
</li>
<li>
<a href="about-us.html#logo-rationale">Logo Rationale</a>
</li>
<li>
<a href="team.html">Our Team</a>
</li>
</ul>
</li>
<li>
<a href="#">Events</a><!--goto the list page of all events-->
<ul>
<li>
<a href="ead.html">EAD</a>
</li>
<li>
<a href="celesta.html">Celesta</a>
</li>
<li>
<a href="anwesha.html">Anwesha</a>
</li>
<li>
<a href="others.html">Entrepreneurs Week</a>
</li>
</ul>
</li>
<li>
<a href="icenter.html">Innovation Center</a>
</li>
<li>
<a href="#">Gallery</a>
<ul>
<li>
<a href="gallery.html">Events Gallery</a>
</li>
<li>
<a href="media.html">Media Coverage</a>
</li>
</ul>
</li>
<li>
<a href="http://eclubiitp.blogspot.in">Blog</a>
</li>
<li>
<a href="#">Portal</a>
</li>
<li>
<a href="contact-us.html">Contact</a>
</li>
</ul>
<nav id="mobile-menu" class="top-bar">
<ul class="title-area">
<!-- Do not remove this list item -->
<li class="name"></li>
<!-- Menu toggle button -->
<li class="toggle-topbar menu-icon">
<a href="#"><span>Menu</span></a>
</li>
</ul>
<!-- Mobile menu's container -->
<section class="top-bar-section"></section>
</nav>
</div>
</div>