forked from QAZIMAAZARSHAD/Apni-Dukaan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dummy.html
154 lines (148 loc) · 5.44 KB
/
dummy.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
152
153
154
<!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="./home.html">Home</a></li>
<li><a href="./offers.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="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">
<div class="buttonmodal">
<button id="myBtn">Click Here</button>
</div>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<p>This Site Is Under Construction</p>
</div>
</div>
<br>
<footer class="bg-dark text-white pt-5 pb-4">
<div class="container text-md-left">
<div class="row text-md-left">
<div class="col mt-3" style="color:#808080;">
<h5 class="text-uppercase mb-4 font-weight-bold">Get to know us</h5>
<p>
<a href="" class="text-white" style="text-decoration: none;">About us</a>
</p>
<p>
<a href="" class="text-white" style="text-decoration: none;">Careers</a>
</p>
<p>
<a href="" class="text-white" style="text-decoration: none;">Press releases</a>
</p>
<p>
<a href="" class="text-white" style="text-decoration: none;">Apni Dukaan cares</a>
</p>
<p>
<a href="./Partner Stores.html" class="text-white" style="text-decoration: none;">Our Partners</a>
</p>
</div>
<div class="col mt-3" style="color:#808080;">
<h5 class="text-uppercase mb-4 font-weight-bold">Let us help you</h5>
<p>
<a href="" class="text-white" style="text-decoration: none;">Payments</a>
</p>
<p>
<a href="" class="text-white" style="text-decoration: none;">Shipping</a>
</p>
<p>
<a href="" class="text-white" style="text-decoration: none;">Cancellation and Returns</a>
</p>
<p>
<a href="" class="text-white" style="text-decoration: none;">Report an issue</a>
</p>
<p>
<a href="./contactus.html" class="text-white" style="text-decoration: none;">Contact us</a>
</p>
</div>
<div class="col mt-3" style="color:#808080;">
<h5 class="text-uppercase mb-4 font-weight-bold">Policy</h5>
<p>
<a href="" class="text-white" style="text-decoration: none;">Return policy</a>
</p>
<p>
<a href="" class="text-white" style="text-decoration: none;">Time of use</a>
</p>
<p>
<a href="" class="text-white" style="text-decoration: none;">Privacy</a>
</p>
</div>
<div class="col mt-3" style="color:#808080;">
<h5 class="text-uppercase mb-4 font-weight-bold">Make money with us</h5>
<p>
<a href="" class="text-white" style="text-decoration: none;">Sell on Apni Dukaan</a>
</p>
<p>
<a href="" class="text-white" style="text-decoration: none;">Advertise your products</a>
</p>
<p>
<a href="" class="text-white" style="text-decoration: none;">Become our partner</a>
</p>
<p>
<a href="" class="text-white" style="text-decoration: none;">Join our mission</a>
</p>
</div>
<div class="col mt-3" style="color:#808080;">
<h5 class="text-uppercase mb-4 font-weight-bold">Connect with us</h5>
<p>
<a href="https://www.facebook.com" class="text-white" style="text-decoration: none;">
<i class="fab fa-facebook-square"></i>
Facebook
</a>
</p>
<p>
<a href="https://twitter.com" class="text-white" style="text-decoration: none;">
<i class="fab fa-twitter-square"></i>
Twitter
</a>
</p>
<p>
<a href="https://instagram.com" class="text-white" style="text-decoration: none;">
<i class="fab fa-instagram-square"></i>
Instagram
</a>
</p>
</div>
</div>
<hr class="mb-4">
<div class="row align-items-center ">
<div class="text-center">
Copyright © and ® Since 2020 Under ApniDukaan.com | Qazi Maaz Arshad
</div>
</div>
</div>
</footer>
<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>