-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
151 lines (145 loc) · 5.06 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
<!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>Olx</title>
<link rel="stylesheet" href="./styles/index.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css" />
<link rel="stylesheet" href="./styles/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/2.1.2/sweetalert.min.js"
integrity="sha512-AA1Bzp5Q0K1KanKKmvN/4d3IRKVlv9PYgwFPvm32nPO6QS8yH1HO7LbgB1pgiOxPtfeg5zEn2ba64MUcqJx6CA=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head>
<body>
<nav></nav>
<p>More on Motorcycle</p>
<div class="swiper mySwiper">
<div class="swiper-wrapper">
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-pagination"></div>
</div>
<p>Fresh recommendations</p>
<div id="products">
<!-- All products -->
</div>
<button id="btn-load">Load More</button>
<button id="btnback"><i class="fas fa-angle-up"></i>Back to top</button>
<div id="ad">
<img src="https://images1.livehindustan.com/uploadimage/library/2022/06/08/16_9/16_9_1/royal_enfield_bullet_350_down_payment_and_loan_emi_calculator_1654683981.jpg"
alt="royal enfield" />
<div>
<h1>Down Payment At ₹ 11,000</h1>
<p>
India's Most Awarded Motorcycle 2022. Air Cooled, Tripper™ Navigation,
J-Series Platform.
</p>
<p>Royal Enfield</p>
</div>
</div>
<div id="olxad">
<div>
<img src="https://statics.olx.in/external/base/img/phone-app.webp" alt="olxad" />
</div>
<div>
<h1>TRY THE OLX APP</h1>
<p>
Buy, sell and find just about anything using the app on your mobile.
</p>
</div>
<div>
<p>GET YOUR APP TODAY</p>
<img src="https://statics.olx.in/external/base/img/appstore_2x.webp" alt="appleapp" />
<img src="https://statics.olx.in/external/base/img/playstore_2x.webp" alt="playapp" />
</div>
</div>
<div id="footer">
<!-- footer -->
<div>
<section>
POPULAR LOCATIONS
<ul>
<li>Kolkata</li>
<li>Mumbai</li>
<li>Pune</li>
<li>Chennai</li>
</ul>
</section>
<section>
TRENDING LOCATIONS
<ul>
<li>Bhubaneshwar</li>
<li>Hyderabad</li>
<li>Chandigarh</li>
<li>Nashik</li>
</ul>
</section>
<section>
ABOUT US
<ul>
<li>About OLX Group</li>
<li>Careers</li>
<li>Contact Us</li>
<li>OLXPeople</li>
<li>Waah Jobs</li>
</ul>
</section>
<section>
OLX
<ul>
<li>Help</li>
<li>Sitemap</li>
<li>Legal & Privacy Information</li>
<li>Blog</li>
</ul>
</section>
</div>
<section>
FOLLOW US
<ul>
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-solid fa-play"></i>
</ul>
<ul>
<img src="https://statics.olx.in/external/base/img/appstore_2x.webp" alt="appleapp" />
<img src="https://statics.olx.in/external/base/img/playstore_2x.webp" alt="playapp" />
</ul>
</section>
</div>
<div id="tagline">
<p>Other Countries Pakistan - South Africa - Indonesia</p>
<p>Free Classifieds in India. © 2006-2022 OLX</p>
</div>
</body>
<script src="./scripts/index.js" type="module"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js"></script>
<!-- Initialize Swiper -->
<script>
var swiper = new Swiper(".mySwiper", {
slidesPerView: 4,
spaceBetween: 30,
slidesPerGroup: 4,
loop: true,
loopFillGroupWithBlank: true,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
</script>
<script type="module">
import navbar from "./components/navbar.js";
document.querySelector("nav").innerHTML = navbar();
</script>
<script src="./scripts/script.js" type="module"></script>
</html>