-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlandingPage.html
112 lines (106 loc) · 5.88 KB
/
landingPage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<link rel="stylesheet" href="./ComponentsStyles/sigupLogin.css">
<link rel="stylesheet" href="./ComponentsStyles/footer.css">
<link rel="stylesheet" href="./ComponentsStyles/popup.css">
<link rel="stylesheet" href="./Styles/landingPage.css">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
</head>
<body>
<div class="section">
<div id="upperSection" style="position: relative;">
<div id="upperSectionLeftPart">
<div id="upperSectionLeftPartInnerBox">
<nav>
<img id="swiggyLogo" src="./swiggyLogo.png" alt="swiggyLogo">
<div id="navButtonUpperDiv">
<div id="navButtonDiv">
<button id="loginBtn" class="navBtn">Login</button>
<button id="signupBtn" class="navBtn">Sign up</button>
</div>
</div>
<div id="loggedUpperDiv">
<div id="loggedUser">
<div><img src="https://www.transparentpng.com/thumb/user/single-user-icon-png-free--rLHSHx.png" alt=""></div>
<div><button id="colorChange"></button></div>
</div>
<div id="logoutDropDown">
<button id="logoutBtn">Logout</button>
</div>
</div>
</nav>
<h1 id="randomTextHeading"></h1>
<h2 id="supporterTextHeading">Order food from favourite restaurants near you.</h2>
<div id="searchBox">
<input id="searchBar" type="text" placeholder="Enter your delivery location ">
<button id="searchBtn">FIND FOOD</button>
</div>
<h3 id="popularCitiesHeading">POPULAR CITIES IN INDIA</h3>
<ul id="popularCitiesList">
<li><a href="#">Ahmedabad</a></li>
<li><a href="#">Bangalore</a></li>
<li><a href="#">Chennai</a></li>
<li><a href="#">Delhi</a></li>
<li><a href="#">Gurgaon</a></li>
<li><a href="#">Hyderabad</a></li>
<li><a href="#">Kolkata</a></li>
<li><a href="#">Mumbai</a></li>
<li><a href="#">Pune</a></li>
<li><a href="#">& more.</a></li>
</ul>
</div>
</div>
<div id="upperSectionRightPart">
<img id="upperSectionRightPartImage" src="https://res.cloudinary.com/swiggy/image/upload/fl_lossy,f_auto,q_auto,h_1340/Lunch1_vlksgq" alt="upperSectionRightPartImage">
</div>
</div>
</div>
<div class="section" id="secondBox">
<div id="secondBoxInnerDiv">
<div class="secondBoxInnerDivGridBox">
<img id="secondBoxImage1" src="https://res.cloudinary.com/swiggy/image/upload/fl_lossy,f_auto,q_auto,w_210,h_398/4x_-_No_min_order_x0bxuf" alt="">
<div class="secondBoxHeading">No Minimum Order</div>
<div class="secondBoxPara">Order in for yourself or for the group, with no restrictions on order value</div>
</div>
<div class="secondBoxInnerDivGridBox">
<img id="secondBoxImage2" src="https://res.cloudinary.com/swiggy/image/upload/fl_lossy,f_auto,q_auto,w_224,h_412/4x_Live_order_zzotwy" alt="">
<div class="secondBoxHeading">Live Order Tracking</div>
<div class="secondBoxPara">Know where your order is at all times, from the restaurant to your doorstep</div>
</div>
<div class="secondBoxInnerDivGridBox">
<img id="secondBoxImage3" src="https://res.cloudinary.com/swiggy/image/upload/fl_lossy,f_auto,q_auto,w_248,h_376/4x_-_Super_fast_delivery_awv7sn" alt="">
<div class="secondBoxHeading">Lightning-Fast Delivery</div>
<div class="secondBoxPara">Experience Swiggy's superfast delivery for food delivered fresh & on time</div>
</div>
</div>
</div>
<div class="section" id="thirdBox">
<div id="thirdBoxInnerDiv">
<div id="thirdBoxInnerDivHeading">Restaurants in your pocket</div>
<div id="thirdBoxInnerDivPara">Order from your favorite restaurants & track on the go, with the all-new Swiggy app.</div>
<div>
<a href="#">
<img id="playStoreImage" height="54" src="https://res.cloudinary.com/swiggy/image/upload/fl_lossy,f_auto,q_auto,h_108/play_ip0jfp">
</a>
<a href="#">
<img id="appleStoreImage" height="54" src="https://res.cloudinary.com/swiggy/image/upload/fl_lossy,f_auto,q_auto,h_108/iOS_ajgrty">
</a>
</div>
</div>
<img id="mobileImage1" width="384" height="489" src="https://res.cloudinary.com/swiggy/image/upload/fl_lossy,f_auto,q_auto,w_768,h_978/pixel_wbdy4n">
<img id="mobileImage2" width="384" height="489" src="https://res.cloudinary.com/swiggy/image/upload/fl_lossy,f_auto,q_auto,w_768,h_978/iPhone_wgconp_j0d1fn">
</div>
<footer id="footerPart"></footer>
<!-- //Login and Signup Forms... -->
<div id="import1"></div>
<div id="import2"></div>
<div id="import3"></div>
<div id="alertBoxUpperDiv2" class="alertBoxUpperDiv"></div>
</body>
</html>
<script src="./Scripts/landingPage.js" type="module"></script>