-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdescription.html
More file actions
110 lines (105 loc) · 3.54 KB
/
description.html
File metadata and controls
110 lines (105 loc) · 3.54 KB
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
<!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>Product Description</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="./styles/description.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>
<div id="main">
<div>
<div id="details">
<button> > </button>
<button>
< </button>
</div>
<div id="disc">
<p>Description:</p>
</div>
</div>
<div id="contact">
<div id="price">
</div>
<div id="seller">
<p>Seller description</p>
<p><i class="fa-regular fa-user"></i>Rohit Patil</p>
<p><i class="fa fa-phone"></i>9876543210</p>
</div>
</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/description.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>
</html>