-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (93 loc) · 2.93 KB
/
index.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
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
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Animated Navbar</title>
<!-- Material Icons -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<!-- google fonts -->
<link
href="https://fonts.googleapis.com/css?family=Great+Vibes&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900&display=swap"
rel="stylesheet"
/>
<!-- include style.css -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<nav class="navbar">
<a href="#" class="navbar-logo"
><i class="material-icons">fastfood</i> foodHouse</a
>
<ul class="navbar-links">
<li class="navbar-dropdown">
<a href="#">Soups</a>
<div class="dropdown">
<a href="#">Tomato Soup</a>
<a href="#">Veg Manchow Soup</a>
<a href="#">Veg Hot Soup</a>
</div>
</li>
<li class="navbar-dropdown">
<a href="#">Sweets</a>
<div class="dropdown">
<a href="#">Ladoo</a>
<a href="#">Besan Ladoo</a>
<a href="#">Ghee Besan Ladoo</a>
<a href="#">Nariyal Ladoo</a>
<a href="#">Kaju Katli</a>
<a href="#">Rasgulla</a>
</div>
</li>
<li class="navbar-dropdown">
<a href="#">Breads</a>
<div class="dropdown">
<a href="#">Lachha Paratha</a>
<a href="#">Rumali Roti</a>
<a href="#">Tandoori Roti</a>
<a href="#">Butter Roti</a>
<a href="#">Plain Naan</a>
<a href="#">Butter Naan</a>
</div>
</li>
<li class="navbar-dropdown">
<a href="#">Rice</a>
<div class="dropdown">
<a href="#">Plain Rice</a>
<a href="#">Veg Pulao</a>
<a href="#">Veg Biryani</a>
<a href="#">Paneer Biryani</a>
<a href="#">Lemon Rice</a>
<a href="#">Veg Kashmiri Pulao</a>
</div>
</li>
<li class="navbar-dropdown">
<a href="#">Chinese</a>
<div class="dropdown">
<a href="#">Paneer Chill Dry</a>
<a href="#">Paneer Garlic</a>
<a href="#">Veg Garlic</a>
<a href="#">Veg Chilli</a>
</div>
</li>
</ul>
</nav>
<header class="header">
<div class="header-inner">
<h1>Food House</h1>
<form>
<input type="search" placeholder="Enter Your Location" />
<div class="overlay"></div>
</form>
</div>
</header>
</body>
</html>