-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
454 lines (446 loc) · 15.7 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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
<!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" />
<!-- Font Awesome liabary -->
<link rel="stylesheet" href="css/all.min.css" />
<link rel="stylesheet" href="style.css" />
<!-- css Files Liabary to Icons -->
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/rule.css" />
<link rel="stylesheet" href="css/dark.css">
<link rel="stylesheet" href="css/style.css" />
<title>UNINE Platform</title>
</head>
<body>
<!-- start Header in website -->
<header class="header">
<div class="container">
<a class="navbar-logo">
<img src="img/logo.png" alt="" />
</a>
<nav>
<a class="toogle-navbar">
<i class="fa-solid fa-bars"></i>
</a>
<ul class="links-navbar">
<li>
<a href="#">Learn</a>
</li>
<li class="dropdown">
<a href="#">App <i class="fa-solid fa-angle-down"></i></a>
<ul class="dropdown-menu">
<li>
<a href="">Desktop App</a>
</li>
<li>
<a href="">Mobile App</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="">Community <i class="fa-solid fa-angle-down"></i></a>
<ul class="dropdown-menu">
<li>
<a href="">People</a>
</li>
<li>
<a href="">Person</a>
</li>
</ul>
</li>
<li>
<a href="">Unine at Work</a>
</li>
</ul>
<div class="sign-btns">
<a href="">Sign up</a>
<a href="" class="btn">Get a demo</a>
</div>
<div id="icons" style="margin-left: 20px;">
<i class="fa-solid fa-moon" id="toggleDark"></i>
<!-- <i class="fa-solid fa-plus" onclick="ChangeFontSise('increase')"></i>
<i class="fa-solid fa-minus" onclick="ChangeFontSise('decrease')"></i>
<i class="fa-solid fa-arrow-rotate-right" onclick="resetBGClr()"></i>
<i class="fa-solid fa-palette" onclick="changeBGclr()"></i> -->
</div>
</nav>
</div>
</header>
<section class="landing">
<div class="container">
<div class="box-content">
<div class="left-box">
<h1>
More Payment Options<br />
Better than Cash
</h1>
<p>
With ipsum, dolor sit amet consectetur adipisicing elit. Id 200,
nisi hic reprehenderit aperiam beatae quaerat quod aspernatur aut,
porro assumenda eos sunt dicta obcaecati
</p>
</div>
<div class="right-box">
<img src="img/phoneHD.jpg" />
</div>
</div>
<div class="box-btns">
<div class="os-btn">
<a class="app-btn" target="_blank" href="https://www.apple.com/app-store/">
<div class="icon">
<i class="fa-brands fa-apple" style='font-size="30px"'></i>
</div>
<div class="content">
<p>Download on the</p>
<span class="big-txt">App Store</span>
</div>
</a>
<a class="app-btn" target="_blank" href="https://play.google.com/store/apps?hl=en_US&gl=GB">
<div class="icon">
<img src="img/google-play.png" alt="" width="30" height="30"/>
</div>
<div class="content">
<p>GET IT ON</p>
<span class="big-txt">Google Play</span>
</div>
</a>
</div>
<div class="rating">
<p>Excellent <span>4.9 out of 5</span></p>
<div class="group-rate">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
</div>
</div>
</div>
</div>
</section>
<button onclick="topFunction()" id="myBtn" title="Go to top"><i class="fa-solid fa-arrow-up"></i></button>
<!-- End Header in Website -->
<!-----Transaction section start----------->
<section class="transaction-section">
<div class="container">
<!-----Title----->
<div class="section-title">
<h2>Safe & Convenient Transaction</h2>
<p>
Want to pay anything so easy with the touch of a finger Through
<br />
UNINE, you can make practically any transaction.
</p>
</div>
<!-----Box Featuers ----->
<div class="cards">
<div class="card">
<div class="icon-money">
<i class="fa fa-shield-halved"></i>
</div>
<div class="text-card">
<h4>Always Protected</h4>
<p>
Shopping with UNINE is even more secure thanks to Buyer
Protection.
</p>
</div>
</div>
<div class="card">
<div class="icon-money">
<i class="fa-solid fa-sack-dollar"></i>
</div>
<div class="text-card">
<h4>Get Reward</h4>
<p>
You can keep using your favorite card and keep getting rewards.
</p>
</div>
</div>
<div class="card">
<div class="icon-money">
<i class="fa-solid fa-hand-holding-dollar"></i>
</div>
<div class="text-card">
<h4>No Hidden Fees</h4>
<p>
You will only be charged when selling goods or requesting
payment.
</p>
</div>
</div>
<div class="card">
<div class="icon-money">
<i class="fa fa-arrows-rotate"></i>
</div>
<div class="text-card">
<h4>Free shipping</h4>
<p>
Changed your mind after buying? Send back the item you
purchased.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Start Accounts Section -->
<section class="accounts-section">
<div class="container">
<div class="bank-card">
<h1>Bank Accounts</h1>
<p>
High interest, FDIC insured checking for individuals <br />
and businesses
</p>
<!-- <img src="img/paper.png" alt=""> -->
<div class="balance">
<h5>Balance After Pauout</h5>
<h3>$3,150.00</h3>
</div>
<i class="fa-solid fa-arrow-right"></i>
<a href="#">Learn more</a>
</div>
<div class="cash-card">
<h2>
Keep your cash flow clear 💸<br />
and keep increasing 🚀
</h2>
<p>
See it all at a glance when you link your cash accounts,credit
cards,investments,and bills
</p>
<a class="btn" href="#" >
Try for now
<i class="fa-solid fa-arrow-right"></i>
</a>
</div>
</div>
</section>
<!-- End Accoutns Section -->
<!-- Start Payments Section -->
<section class="payment">
<div class="container">
<div class="cards-payement">
<h2>
Manage regular <br />
payments easily🤑
</h2>
<div class="card-pay">
<div class="card_left">
<img src="img/Globality.png" alt="">
<h3>Globality</h3>
<p>
Send payments to the person<br> in frint of you and the rest of <br>the
world.
</p>
</div>
<div class="card_right">
<img src="img/Integrate.png" alt="">
<h3>Integrate</h3>
<p>
We work with local banks and overseas banks so you don't have to
worry.
</p>
</div>
</div>
</div>
<div class="transfer">
<div class="Pay">
<div class="innerpay">
<h1>Payments</h1>
<p>
Free instant book transfers.Custom fund flows.Send and receive
ACH,checks,and more.
</p>
</div>
<div class="icons">
<div class="save">
<p> <i class="fa-solid fa-sack-dollar"></i><br><p class="par1">Save</p> </p>
</div>
<div class="send">
<p><i class="fa-solid fa-money-bill-trend-up"></i> <p class="par1">Sent</p></p>
</div>
<div class="ballance">
<p><i class="fa-solid fa-scale-balanced"></i><p class="par1"> Balance</p> </p>
</div>
</div>
</div>
<div class="card">
<h3><span><</span>Transfer money</h3>
<p class="send">SEND TO</p>
<div class="image"></div>
<h4>Annisa Azzahra</h4>
<p>annisaazzahra@example.com</p>
<div class="money">
<h2>$5.000</h2>
</div>
<div class="numbers">
<div >1</div>
<div>2</div>
<div>3</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Payments Section -->
<!-----Customers section start----------->
<section class="customers">
<div class="container">
<!-----Title----->
<div class="title">
<h2>Our Customers Says</h2>
</div>
<!-----Button Previou----->
<div class="button-previou">
<button><i class="fa-solid fa-angle-left"></i></button>
</div>
<!----- 2 Box Customer info ----->
<div class=" box-content">
<div class="box-customer">
<div class="icon-double-quotes">
<i class="fa-solid fa-quote-right"></i>
</div>
<div class="tital-pra">
<h4>I paid off $24,000 first year</h4>
<p>
“Without the system and the support.I br would have been
canoeing without a paddle! Thanks for being my paddle, UNINE.
😉👍💪”
</p>
</div>
<span class="hor-line"></span>
<div class="customer-info">
<div class="customer-photo">
<img src="img/person.jpg" alt="man" />
<div class="person-info">
<p>Ronald Richards</p>
<p>First Years of using UNINE</p>
</div>
</div>
<div class="rating">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star-half-stroke"></i>
</div>
</div>
</div>
<div class="box-customer">
<div class="icon-double-quotes">
<i class="fa-solid fa-quote-right"></i>
</div>
<div class="tital-pra">
<h4>My net worth is already $43k</h4>
<p>
"When I got frustrated with Mint and its lack of flexibility، I
found YNAS through some random blog post. I never looked back.
💰"
</p>
</div>
<span class="hor-line"></span>
<div class="customer-info">
<div class="customer-photo">
<img src="img/person.jpg" alt="man" />
<div class="person-info">
<p>Wade Warren</p>
<p>3 Years of using UNINE</p>
</div>
</div>
<div class="rating">
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star"></i>
<i class="fa-solid fa-star-half-stroke"></i>
</div>
</div>
</div>
</div>
<!-----Button Next----->
<div class="button-next">
<button><i class="fa-solid fa-angle-right"></i></button>
</div>
</div>
</section>
<!-- End Customer Section -->
<!-- Start Get App section -->
<section class="app-section">
<div class="container">
<div class="Aheader">
<h2 class="header1">Get Unine App on Google</h2>
<h2 class="header2">Play or App Store</h2>
</div>
<div class="paraghraf">
<p>Build your financial literacy within a transparent community.</p>
<p>Follow other investors, share insights with people.</p>
</div>
<div class="os-btn">
<a class="app-btn1" target="_blank" href="https://www.apple.com/app-store/">
<div class="icon1">
<i class="fa-brands fa-apple" style='font-size="30px"'></i>
</div>
<div class="content">
<p>Download on the</p>
<span class="big-txt">App Store</span>
</div>
</a>
<a class="app-btn2" target="_blank" href="https://play.google.com/store/apps?hl=en_US&gl=GB">
<div class="icon2">
<!-- <i class="fa-brands fa-google-play"></i> -->
<img src="img/google-play.png" alt="" width="20" height="20"/>
</div>
<div class="content">
<p>Get it on</p>
<span class="big-txt">Google Play</span>
</div>
</a>
</div>
</div>
</section>
<!-- End Get App Section -->
<!-- Start Footer Section -->
<section class="footer">
<div class="container">
<div class="up-box">
<div class="icon-box">
<img src="img/logo.png" alt="" />
<div class="icons">
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-discord"></i>
</div>
</div>
<ul class="links">
<li>Technology Park 8-14</li>
<li>Marie Curie Street</li>
<li>08042 Barcelona</li>
</ul>
<ul class="links">
<li>Learn</li>
<li>Apps</li>
<li>Communtiy</li>
</ul>
<ul class="links">
<li>Legal Mentions</li>
<li>Terms of Services</li>
<li>Privacy Policy</li>
</ul>
</div>
</div>
<div class="down-box">
<div class="container">
<p>©2022 COPYRIGHT BY UNINE</p>
</div>
</div>
</section>
<script src="js/script.js"></script>
<!-- End Footer Section -->
<!-- Javascript Files -->
</body>
</html>