forked from QAZIMAAZARSHAD/Apni-Dukaan
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproduct.html
139 lines (135 loc) · 5.13 KB
/
product.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
<!DOCTYPE html>
<html>
<head>
<title>Apni Dukaan</title>
<meta charset="utf-8">
<meta name="vfewport" content="width=device-width initial-scale=1 shrink-to-fit-=no">
<link rel="stylesheet" type="text/css" href="./static/style.css">
<link rel="icon" href="./Images/favicon.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<!-- SCROLL TOP BUTTON -->
<a class="scrollToTop" href="#"></a>
<!-- END SCROLL TOP BUTTON -->
<nav class="menu">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./deals.html">Offers</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href="./contactus.html">Contact Us</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="Partner Stores.html">Partner Stores</a></li>
</ul>
<form class="search-form">
<input type="text" placeholder="Search">
<button>Search</button>
</nav>
<marquee>Welcome To <i>ApniDukaan</i>.com<sup>®</sup></marquee>
<img src="./Images/ApniDukaanLogo.jpg" class="logo">
<label class="online">Find Your Best Deal</label>
<nav class="menu2">
<ul>
<li><a href="mobile.html">Mobile</a> </li>
<li><a href="dummy.html">TV and Appliances</a></li>
<li><a href="dummy.html">Clothes</a></li>
<li><a href="dummy.html">Baby and Kids</a></li>
<li><a href="dummy.html">Furniture</a></li>
</ul>
</nav>
<div class="product" style="overflow-x: auto;">
<table>
<tr>
<td>
<img src="./Images/mobile.jpg">
<a href="dummy.html"><button>Buy Now</button></a>
<a href="dummy.html"><button>Add To Cart</button></a>
</td>
<td>
<h1>Redmi Y2</h1>
<h3>(Gold, 4GB RAM, 64GB Storage)<h3>Best Phone Available</h3></h3>
<h3>
<h3>
Long Battery Life<h3> Special Price</h3>
<h3>10000</h3>
</h3>
</h3>
<h3>
Top Reviews :
</h3>
<h3><p>
"The Redmi Y2 is a mid-ranger packing the Snapdragon 730G chipset under the hood along with 6GB of RAM. The phone’s highlight feature is its rear camera setup with five sensors that can adapt to pretty much any shooting style.<br>But the Redmi Y2has more to offer than just its cameras. It sports a large 6.47-inch Full HD+ display, packs a massive 5,260mAh battery, and comes with a headphone jack as well as an IR blaster. Like the rest of Xiaomi’s lineup, it also offers great value for money."
</p>
</h3>
</td>
</tr>
</table>
</div>
<table align="center">
<footer align="center" class="foot">
<img src="./Images/ApniDukaanLogo.jpg" class="logo1">
<div class="inner">
<div class="about">
<h3>Get To Know Us</h3>
<ul>
<li> <a href= "about.html">About us</a></li>
<li> <a href="dummy.html">Careers</a></li>
<li> <a href="dummy.html">Press Releases</a></li>
<li> <a href="dummy.html">ApniDukaan Cares</a></li>
</ul>
</div>
<div class="help">
<h3>Let Us Help You</h3>
<ul>
<li> <a href="dummy.html">Payments</a></li>
<li> <a href="dummy.html">Shipping</a></li>
<li> <a href="dummy.html">Cancellation and Returns</a></li>
<li> <a href="dummy.html">Report an Issue</a></li>
</ul>
</div>
<div class="policy">
<h3>Policy</h3>
<ul>
<li> <a href="dummy.html">Return Policy</a></li>
<li> <a href="dummy.html">Time Of Use</a></li>
<li> <a href="dummy.html">Carrers</a></li>
<li> <a href="dummy.html">Privacy</a></li>
</ul>
</div>
<div class="about">
<h3>Connect With Us</h3>
<ul>
<li> <a href="contactus.html"> Contact Us</a></li>
<li> <a href="dummy.html">Facebook</a></li>
<li> <a href="dummy.html">Twitter</a></li>
<li> <a href="dummy.html">Instagram</a></li>
</ul>
</div>
<div class="about">
<h3>Make Money With Us</h3>
<ul>
<li> <a href="dummy.html">Sell On ApniDukaan</a></li>
<li> <a href="dummy.html">Advertise Your Products</a></li>
<li> <a href="dummy.html">Become Our Partner</a></li>
<li> <a href="dummy.html">Join Our Mission</a></li>
</ul>
</div>
</div>
<p class="copyright">Copyright © and ® Since 2020
Under ApniDukaan.com | Qazi Maaz Arshad</p>
</footer>
</table>
<script src="./static/script.js"></script>
<!-- scroll to top button -->
<button id = "btnScrollToTop">
<i class="material-icons">arrow_upward</i>
</button>
<script>
const btnScrollToTop = document.querySelector("#btnScrollToTop");
btnScrollToTop.addEventListener("click", function () {
window.scrollTo(0,0); }
);
</script>
</body>
</html>