-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html
46 lines (42 loc) · 1.44 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Nilgiri - Home</title>
<link href="https:fonts.googleapis.com/css?family=Work+Sans:300">
<link href="css/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<h1 class="logo">Nilgiri House</h1>
<input type="checkbox" id="nav-toggle" class="nav-toggle">
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#" class="dropbtn"><div class="dropdown">Pride
<i class="fa fa-caret-down"></i>
<div class="dropdown-content">
<a href="#" class="droplink">Hall Of Fame</a>
<a href="#" class="droplink">Fresher of The Month</a>
<a href="#" class="droplink">Archives</a>
</div>
</div></a></li>
<li><a href="#" class="dropbtn"><div class="dropdown">Facilities
<i class="fa fa-caret-down"></i>
<div class="dropdown-content">
<a href="#" class="droplink">Mess</a>
<a href="#" class="droplink">Grievances</a>
<a href="#" class="droplink">Sports</a>
</div>
</div></a></li>
<li><a href="#">Notice Board</a></li>
</ul>
</nav>
<label for="nav-toggle" class="nav-toggle-label">
<span></span>
</label>
</header>
<div class="content">
<h2>Your content would go here</h2>
</div>
</body>
</html>