-
Notifications
You must be signed in to change notification settings - Fork 0
/
scooter.html
101 lines (90 loc) · 3.27 KB
/
scooter.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 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>Scooters</title>
<link rel="stylesheet" href="./styles/scooter.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<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>
<div id="block-2">
<div id="sidebar">
<div>
<h1>Used Scooters</h1>
<h2>CATEGORIES</h2>
<select name="price" id="price">
<option value="">Filter by Price</option>
<option value="20">20000-30000</option>
<option value="30">31000-45000</option>
<option value="40">46000-65000</option>
</select>
<h2>LOCATIONS</h2>
<select name="states" id="location">
<option value="states">state</option>
<option value="MAH">Maharashtra</option>
<option value="MP">Madhya Pradesh</option>
<option value="RJ">Rajshtan</option>
<option value="KN">Karnatak</option>
<option value="UP">Uttar pradesh</option>
</select>
</div>
</div>
<div id="scooters"></div>
</div>
<li><button id="btn-load">Load More</button></li>
<button onclick="backTop()" id="btnback">
<i class="fa fa-angle-up"></i>Back to top
</button>
<div id="footer">
<div>
<h2>Popular Locations</h2>
<p>Kolkata</p>
<p>Chennai</p>
<p>Mumbai</p>
<p>Pune</p>
</div>
<div>
<h2>Trending Locations</h2>
<p>Bhubneshwar</p>
<p>Hyderabad</p>
<p>Mumbai</p>
<p>Pune</p>
</div>
<div>
<h2>About Us</h2>
<p>About OLX Group</p>
<p>Careere</p>
<p>Contact Us</p>
<p>OLX People</p>
<p>Waa Jobs</p>
</div>
<div>
<h2>OLX</h2>
<p>Help</p>
<p>Sitemap</p>
<p>Legal & Privacy information</p>
<p>OLX People</p>
<p>Blog</p>
</div>
</div>
<div id="foot">
<p>Other Countries Pakistan - South Africa - Indonesia</p>
<p>Free Classifieds in India. © 2006-2022 OLX</p>
</div>
</body>
</html>
<script src="./scripts/scooter.js"></script>
<script type="module">
import navbar from "./components/navbar.js";
document.querySelector("nav").innerHTML = navbar();
</script>
<script src="./scripts/script.js" type="module"></script>