-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (100 loc) · 4.35 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
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Food Delivery Bangalore: Swiggy.in</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--<link href="stylesheets/base/base.css" rel="stylesheet" type="text/css" />-->
<link href="stylesheets/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<div id="site-header">
<div class="wrap">
<div id="logo-container">
<img src="images/swiggy-icon.png" alt="Swiggy icon"/>
</div>
<ul id="login-navbar">
<li><span>Sign up</span></li>
<li><span>Login</span></li>
</ul>
</div>
</div>
<div id="hero" class="section">
<div class="wrap">
<div class="tagline">
<span>Food from your favorite restaurant delivered fast!</span>
</div>
<div class="select-location ">
<input class="city" type="text" placeholder="Bangalore"/><!--
--><input class="location" type="text" placeholder="Type your location"/><!--
--><button class="btn-search">Search</button>
</div>
</div>
</div>
</header>
<div id="branding" class="section">
<div class="wrap">
<div class="panel">
<div class="title">
<image class="icon" src="images/clock.png"></image>
<span>45 Mins Guarantee</span>
</div>
<div class="description">
<span>Our drivers pick up orders and deliver them within 45 minutes, zero delivery charges otherwise.</span>
</div>
</div>
<div class="panel">
<div class="title">
<image class="icon" src="images/card.png"></image>
<span>Pay via Cash/Card</span>
</div>
<div class="description">
<span>No more scrambling for change, we accept cards online or cash on delivery. Pay for your food when you get it.</span>
</div>
</div>
<div class="panel">
<div class="title">
<image class="icon" src="images/food.png"></image>
<span>Food & Desserts</span>
</div>
<div class="description">
<span>Choose food from beautiful visual menus from the best restaurants in your neighbourhood.</span>
</div>
</div>
</div>
</div>
<div id="recommended-restaurants" class="section">
<div class="wrap">
<span class="title">Recommended Restaurants</span>
<!--<div class="filter-bar">-->
<!--<div class="search"><input type="text" placeholder="Search here for restaurant or cuisine"/></div>-->
<!--<div class="sort"><input type="text" placeholder="SORT BY"/></div>-->
<!--</div>-->
<div class="list">
<ul>
<li>
<img class="restaurant-image" src="images/foodphotos/friedrice.jpeg" alt="fried rice"/>
<div class="restaurant-name">
<span>Punjabi Dhaba</span>
<span>Indiranagar</span>
</div>
<div class="type">
<span>North Indian</span>
</div>
<div class="time">20 mins</div>
<div class="cost">Rs 400</div>
<div class="btn-viewmenu"><button>View Menu</button></div>
</li>
</ul>
</div>
</div>
</div>
<div id="install-on-device">
<div class="wrap"></div>
</div>
<footer>
<div class="wrap"></div>
</footer>
</body>
</html>