-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
171 lines (167 loc) · 5.56 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./Style/style.css" />
<title>Demo UI</title>
</head>
<body>
<header>
<div class="header-content-wrapper">
<div class="header-content">
<div class="header-content-top">
<span>SWIGGY</span>
<div class="head-btn">
<button class="btn-white">Login</button>
<button class="btn-black">Sign up</button>
</div>
</div>
<div class="header-content-mid">
<div class="slider">
<div class="animateText">
<div class="animateText1">Unexpected guests?</div>
<div class="animateText2">Cooking gone wrong?</div>
<div class="animateText3">Movie marathon?</div>
<div class="animateText4">Game night?</div>
<div class="animateText5">Late night at office?</div>
<div class="animateText6">Khana khana hai?</div>
</div>
</div>
<p>Order food from favourite restaurants near you.</p>
</div>
<div class="header-content-input">
<div class="input-items">
<div class="input-locate">
<input type="text" placeholder="Enter your delivery location" />
<div class="locate">
<div class="locate-text-icon">
<img src="./images/locateme.png" alt="" />
<span class="locate-text">Locate me</span>
</div>
<button class="find-food">FIND FOOD</button>
</div>
</div>
</div>
</div>
<div class="header-content-location">
<span>POPULAR CITIES IN INDIA</span>
<p>Ahmedabad</p>
<p>Bangalore</p>
<p>Chennai</p>
<p>Delhi</p>
<p>Gurgaon</p>
<p>Hyderabad</p>
<p>Kolkata</p>
<p>Mumbai</p>
<p>Pune</p>
<p>& more.</p>
</div>
</div>
</div>
<div class="header-img"></div>
</header>
<main>
<div class="box box1">
<div class="box-img">
<img src="./images/4x_-_No_min_order_x0bxuf.png" alt="" />
</div>
<span class="box-title">No Minimum Order</span>
<p>
Order in for yourself or for the group, with no restrictions on order
value
</p>
</div>
<div class="box box2">
<div class="box-img">
<img src="./images/4x_Live_order_zzotwy.png" alt="" />
</div>
<span class="box-title">Live Order Tracking</span>
<p>
Know where your order is at all times, from the restaurant to your
doorstep
</p>
</div>
<div class="box box3">
<div class="box-img">
<img src="./images/4x_-_Super_fast_delivery_awv7sn.png" alt="" />
</div>
<span class="box-title">Lightning-Fast Delivery</span>
<p>
Experience Swiggy's superfast delivery for food delivered fresh & on
time
</p>
</div>
</main>
<section class="info">
<div class="about-wrapper">
<div class="about">
<span class="about-heading">
Restaurants in <br />
your pocket
</span>
<p>
Order from your favorite restaurants & track on the go, with the
all-new Swiggy app.
</p>
<div class="app-store">
<img src="./images/icon-GooglePlay_1_zixjxl.png" alt="" />
<img src="./images/iOS_ajgrty.png" alt="" />
</div>
</div>
</div>
<div class="mobile-screen mobile-screen1">
<img src="./images/pixel_wbdy4n.png" alt="" />
</div>
<div class="mobile-screen mobile-screen2">
<img src="./images/iPhone_wgconp_j0d1fn.png" alt="" />
</div>
</section>
<footer>
<div class="footer-wrapper1">
<div class="footer-top-content1">
<span> COMPANY </span>
<p>About us</p>
<p>Team</p>
<p>Careers</p>
<p>Swiggy Blog</p>
<p>Bug Bounty</p>
<p>Swiggy pop</p>
<p>Swiggy super</p>
</div>
<div class="footer-top-content2">
<span> CONTACT </span>
<p>Help & Support</p>
<p>Partner with us</p>
<p>Ride with us</p>
</div>
<div class="footer-top-content3">
<span> LEGAL </span>
<p>Terms & Conditions</p>
<p>Refund & Cancellation</p>
<p>Privacy Policy</p>
<p>Cookie Policy</p>
<p>Offer Terms</p>
</div>
<div class="footer-top-content4">
<img src="./images/icon-AppStore_lg30tv.png" alt="" />
<img src="./images/icon-GooglePlay_1_zixjxl.png" alt="" />
</div>
</div>
<div class="line"></div>
<div class="cities">
<span> WE DELIVER TO </span>
<div class="city"></div>
</div>
<div class="line"></div>
<div class="footer-wrapper2">
<div class="footer-bottom-content">
<img src="./images/icon-facebook_tfqsuc.png" alt="" />
<img src="./images/icon-instagram_b7nubh.png" alt="" />
<img src="./images/icon-pinterest_kmz2wd.png" alt="" />
<img src="./images/icon-twitter_gtq8dv.png" alt="" />
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>