-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
135 lines (125 loc) · 4.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Zepto clone</title>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="Search.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap"
rel="stylesheet"
/>
<style>
body {
font-family: Arial, sans-serif;
margin: 0px;
padding: 0px;
}
</style>
</head>
<body>
<!-- Kranti navbar start -->
<nav>
<div id="kdiv">
<div id="klogo">
<img
src="https://cdn.zeptonow.com/web-static-assets-prod/artifacts/10.9.3/images/header/primary-logo.svg"
alt=""
/>
</div>
<div id="klocation">
<a href="#" id="kjs_location"
><h5>Delivery in <span>9 Mins</span></h5></a
>
</div>
<div id="kinput">
<i class="fa-solid fa-magnifying-glass"></i>
<input id="Search_h" type="text" placeholder="Search for product" />
</div>
<div id="kicons">
<div id="kicon1">
<a href="login.html"> <i class="fa-regular fa-user"></i></a>
<a href="login.html" id="login_h">Login</a>
</div>
<div id="kicon2">
<a href="./cart.html"> <i class="fa-solid fa-cart-shopping"></i></a>
<a href="./cart.html">Cart</a>
</div>
</div>
</div>
<div id="kpopuplocation">
<h3>Your Location</h3>
<i class="fa-solid fa-xmark" id="kjs_xmark"></i>
<hr />
<div id="kgps">
<i class="fa-solid fa-magnifying-glass"></i>
<input type="text" placeholder="Search a new address" />
</div>
<div id="klocationmark">
<div id="kgpsicon">
<i class="fa-solid fa-location-crosshairs"></i>
</div>
<div id="kgpstext">
<h4>Current Location</h4>
<a href="#">Using GPS</a>
</div>
</div>
</div>
</nav>
<div id="kimagecontainer">
<a href="./paan.html" id="paan-anchor"
><img
src="https://cdn.zeptonow.com/web-static-assets-prod/artifacts/10.9.3/tr:w-1280,ar-1438-235,pr-true,f-auto,q-80//images/paan-corner/paan-corner-banner-desktop.png"
alt=""
/></a>
</div>
<!-- Kranti navbar end -->
<!-- Haresh login and signup start -->
<!-- <div id="hdiv">
<nav class="nav_h">
<ul>
<li><a id="loginBtn" href="login.html">Login</a></li>
</ul>
</nav>
</div> -->
<!-- Haresh login and singup end -->
<!-- Soumyadeep hero section start -->
<section class="unique-card-carousel">
<div class="unique-carousel-container">
<div class="unique-cards">
<!-- Cards will be dynamically added here -->
</div>
<button class="unique-prev">❮</button>
<button class="unique-next">❯</button>
</div>
</section>
<div class="unique-headings">
<h2 class="unique-explore-heading">Explore by category</h2>
<a href="seall.html" class="unique-see-all"><b>See All ></b></a>
</div>
<div class="unique-explore-categories">
<!-- Categories will be dynamically generated here -->
</div>
<!-- Soumyadeep hero section end -->
<!-- Adarsh infinity scrolling start -->
<div id="adiv"></div>
<!-- Adarsh infinity scrolling end -->
<script src="script.js"></script>
<script src="./soumyadeep.js"></script>
<script src="./Ascript.js"></script>
<script
src="https://kit.fontawesome.com/3cabc7956c.js"
crossorigin="anonymous"
></script>
</body>
</html>