-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
312 lines (263 loc) · 8.99 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>About Us</title>
<style>
:root {
--primary: rgb(0, 102, 102);
--light: #EEEEEE;
--dark: #212121;
}
* {
margin: auto;
padding: 0;
box-sizing: border-box;
font-family: 'Fira sans', sans-serif;
}
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
overflow-x: hidden;
background-image: url('./Assets/images/contactusbg.jpg');
display: flex;
justify-content: center;
}
nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 99;
background-color: var(--dark);
padding: 8px 45px 8px 0;
border-bottom: 10px solid var(--primary);
}
.logo {
margin: auto;
width: 20%;
}
.menu,
.c_container {
max-width: 1280px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
}
h1 {
color: #FFF;
font-size: 28px;
font-weight: 900;
letter-spacing: 2px;
text-transform: uppercase;
/* margin: 0 0 0 50px; */
}
/* --------------burger------------ */
.hamburger {
display: block;
position: relative;
z-index: 1;
user-select: none;
appearance: none;
border: none;
outline: none;
background: none;
cursor: pointer;
}
.hamburger span {
display: block;
width: 33px;
height: 4px;
margin-bottom: 5px;
position: relative;
background-color: var(--light);
border-radius: 6px;
z-index: 1;
transform-origin: 0 0;
transition: 0.4s;
}
.hamburger:hover span:nth-child(2) {
transform: translateX(10px);
background-color: var(--primary);
}
.hamburger.is-active span:nth-child(1) {
transform: translate(0px, -2px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
opacity: 0;
transform: translateX(15px);
}
.hamburger.is-active span:nth-child(3) {
transform: translate(-3px, 3px) rotate(-45deg);
}
.hamburger.is-active:hover span {
background-color: var(--primary);
}
.menu {
display: none;
flex: 1 1 0%;
justify-content: space-between;
margin: 0 4px;
white-space: nowrap;
}
.menu a {
color: #FFF;
margin: 0 50px;
font-weight: 600;
text-decoration: none;
transition: 0.4s;
padding: 8px 16px;
border-radius: 99px;
}
.menu a:nth-child(1) {
margin: 0 50px 0 100px;
}
.menu a.is-active,
.menu a:hover {
background-color: var(--primary);
}
.icons {
white-space: nowrap;
margin: 0 0 0 0;
}
.icons a {
margin: 0 25px;
}
.icons a:nth-child(1) img {
margin: 0 -20px 0 70px;
width: 27.5px;
max-width: 100%;
filter: invert(1);
}
.icons a:nth-child(2) img {
width: 27.5px;
max-width: 100%;
filter: invert(1);
opacity: 0.9;
}
.icons a:nth-child(3) img {
width: 27.5px;
max-width: 100%;
margin: 0 40px 0 -20px;
filter: invert(1);
}
@media (min-width: 768px) {
.hamburger {
display: none;
}
.menu {
display: block;
}
}
@media screen and (max-width:1350px) {
.menu {
width: 60%;
}
}
@media screen and (max-width:768px) {
.menu {
position: absolute;
right: 0px;
height: 92vh;
top: 8vh;
background-color: black;
display: flex;
flex-direction: column;
align-items: center;
width: 50%;
transform: translateX(100%);
transition: transform 0.5s ease-in;
z-index: 2;
}
.menu a {
opacity: 0;
}
}
.menu-active {
transform: translateX(0%);
}
@keyframes navlinkfade {
from {
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
transform: translateX(0px);
}
}
#img1 {
filter: brightness(120%);
height: 250px;
}
#img2 {
height: 250px;
}
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
.about-section {
padding: 50px;
text-align: center;
background-color: rgb(0, 102, 102);
color: white;
margin-top: 30px;
border-bottom-left-radius: 40px;
border-bottom-right-radius: 40px;
height: 310px;
}
</style>
</head>
<body>
<nav>
<div class="c_container">
<h1 class="kupon">
<img class=" logo" src="./Assets/images/logo-removebg-preview.png"> KUPON</h1>
<div class="menu">
<a href="./index.html" class="is-active">Home</a>
<a href="./aboutus.html">About Us</a>
<a href="#">Coupons</a>
<a href="./contectusindex.html">Contact Us</a>
</div>
<div class="icons">
<a href="#"><img src="./Assets/images/search.jpg"></a>
<a href="./loginindex.html"><img src="./Assets/images/account.png"></a>
</div>
<button class="hamburger">
<span></span>
<span></span>
<span></span>
</button>
</div>
</nav>
<div class="about-section">
<h1>About Us</h1>
<p>KUPON is designed to save you from your troubles and provide you with promo codes so that you might make some savings. The codes are shared by other users so you can be sure that they work. Sharing codes also gives you points, which can be redeemed
in exchange of coupons later on. As you must have understood by now, Kupon is a two-way street. When one user uses the promo code of X company uploaded by the other user, Kupon takes some commission from the company from which a small percentage
goes to the user who uploaded the promo code in the first place while the rest goes to Kupon’s revenue. This works as an incentive for users to share their unused promo codes with Kupon and benefits the company by increasing their sales. This
is how Kupon generates it’s revenue and profits.
</p>
</div>
<!--
<div class="row">
<div class="column">
<div class="card">
<img id='img1' src="https://media.istockphoto.com/photos/blue-phone-icon-or-contact-website-mobile-symbol-isolated-on-classic-picture-id1327617572?b=1&k=20&m=1327617572&s=170667a&w=0&h=F_k-dNQK9LcK1gbWE9AecrKi1xXRNzy1ZwRyxRnyX1g=" alt="Jane" style="width:100%">
<div class="container">
<h2>CONTACT US</h2>
<div><span><a><i class="fa fa-phone" style="font-size:30px; padding-right:20px;"></i><span style="padding-left:20px;">9876543210</a></span></span>
</div><br>
<div><span><a><i class="fa fa-envelope" style="font-size:30px; padding-right:20px;"></i><span style="padding-left:10px;">mail@mail.com</a></span></span>
</div><br>
</div>
</div>
</div>
-->
</body>
</html>