-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
677 lines (513 loc) · 26.9 KB
/
index.html
File metadata and controls
677 lines (513 loc) · 26.9 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
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
<!DOCTYPE html>
<html>
<head>
<title>NEW TECH - Home</title>
<link rel="icon" href="image/newTechLog.png" />
<link rel="stylesheet" href="style.css" />
<!-- meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@900&display=swap" rel="stylesheet" />
<!-- Icon link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" />
</head>
<body style="height: 3100px;">
<div class="sticky-top">
<!-- top navbar -->
<div class="top-navbar">
<div class="top-icons">
<i class="fa-brands fa-facebook-f fbtn"></i>
<i class="fa-brands fa-twitter tbtn"></i>
<i class="fa-brands fa-instagram ibtn"></i>
</div>
<div class="other-links">
<a href="login.html"> <button class="btn-login">Log in</button></a>
<a href="register.html"> <button class="btn-register ms-4 ms-md-4 me-5">Register</button></a>
<a href="myAccount.html"><i class="fa-solid fa-user userbtn"></i></a>
<a href="cart.html"><i class="fa-solid fa-cart-shopping cartbtn"></i></a>
<a href="watchlist.html"><i class="fa-regular fa-heart heartbtn"></i></a>
</div>
</div>
<!-- navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light" id="navbar">
<div class="container-fluid">
<!-- logo -->
<style>
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@900&family=Roboto&display=swap');
</style>
<a href="index.html" class="navbar-brand mb-0 h1"
style="font-family:'Raleway', sans-serif; color: #1c1c50; font-weight: 900;">
<img src="image/newTechLog.png" alt="NEW TECH logo" width="100" />
NEW TECH
</a>
<!-- nav-menu -->
<button type="button" class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#n1"
aria-controls="n1" aria-expanded="false" aria-label="Toggle navigation">
<span><i class="fa-solid fa-bars" style="color: #1c1c50;"></i></span>
</button>
<div class="collapse navbar-collapse" id="n1">
<ul class="navbar-nav ms-5 nav-menu" style="font-size: larger;">
<li class="nav-item active ms-md-2 ms-xl-4">
<a href="index.html" class="nav-link active">
Home
</a>
</li>
<li class="nav-item dropdown ms-md-2 ms-xl-4">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Products
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="products.html#phone">Smart Phones</a></li>
<li><a class="dropdown-item" href="products.html#laptop">Laptops</a></li>
<li><a class="dropdown-item" href="products.html#TV">TVs</a></li>
<li><a class="dropdown-item" href="products.html#AC">Air Conditioners</a></li>
<li><a class="dropdown-item" href="products.html#fridge">Refrigerators</a></li>
<li><a class="dropdown-item" href="products.html#washing-machines">Washing Machines</a>
</li>
</ul>
</li>
<li class="nav-item ms-md-2 ms-xl-4">
<a class="nav-link" href="#AboutUs">About Us</a>
</li>
<li class="nav-item ms-md-2 ms-xl-4">
<a class="nav-link" href="#ContactUs">Contact Us</a>
</li>
<!-- advanced search -->
<div class="dropdown ms-5 mt-2">
<button type="button"
style="border: none; background-color: transparent; font-weight: bold;"
class=" dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false"
data-bs-auto-close="outside">
Advanced Search
</button>
<form class="dropdown-menu p-4">
<select class="form-select form-select-sm" aria-label=".form-select-sm example">
<option selected style="font-weight: bold;">Select Product</option>
<option value="1">Smart Phone</option>
<option value="2">Laptop</option>
<option value="3">TV</option>
<option value="4">AC</option>
<option value="5">Fridge</option>
<option value="6">Other</option>
</select>
<br />
<select class="form-select form-select-sm" aria-label=".form-select-sm example">
<option selected style="font-weight: bold;">Select Brand</option>
<option value="1">Samsung</option>
<option value="2">Apple</option>
<option value="3">Huawei</option>
<option value="4">TCL</option>
<option value="5">LG</option>
</select>
<br />
<button type="button" class="btn-advanced btn-animation1"
onclick="search();">Search</button>
</form>
</div>
</ul>
<form class="d-flex mb-0 ms-auto">
<input class="form-control me-2" type="search" placeholder="Search Products..." />
<button class="d-flex align-items-end btn-search btn-animation1" type="button"
onclick="search();"><i class="fa-solid fa-magnifying-glass" style="padding: 4px;"></i>
Search</button>
</form>
</div>
</div>
</nav>
</div>
<!-- carousel 01 -->
<div id="carouselExampleDark" class="carousel carousel-dark slide" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="2"
aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active" data-bs-interval="3000">
<img src="image/img1.jpg" class="d-block w-100">
</div>
<div class="carousel-item" data-bs-interval="3000">
<img src="image/img2.jpg" class="d-block w-100">
</div>
<div class="carousel-item" data-bs-interval="3000">
<img src="image/img3.jpg" class="d-block w-100">
</div>
</div>
</div>
<section id="featured" class="my-5 pb-5">
<!-- latest products -->
<div class="container text-center mt-5 py-5">
<h2>Latest Products</h2>
<hr style="width: 100px; height: 6px; background-color: blue;" class="mx-auto" />
<p style="font-size: large;">Here you can check out our New Products with fair price on NEW TECH.</p>
</div>
<div class="row mx-auto container-fluid">
<!-- Phone 1 -->
<div class="product text-center col-lg-3 col-md-4 py-5">
<div class="row text-end pb-5" style="margin-top: -30px; margin-right: -7px;">
<i class="fa-solid fa-heart text-end fav-icon"></i>
</div>
<img src="image/p1.jpg" class="img-fluid" />
<h5 class="p-name">Samsung Galaxy S23</h5>
<p>(8GB + 256GB) (Cream)</p>
<h4 class="p-price">Rs.334,999</h4>
<div class="star" style="color: #1c1c5043;">
<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>
<button class="btn-addtocart justify-content-center ms-4">
ADD TO CART
</button>
</div>
<!-- Phone 2 -->
<div class="product text-center col-lg-3 col-md-4 py-5">
<div class="row text-end pb-5" style="margin-top: -30px; margin-right: -7px;">
<i class="fa-solid fa-heart text-end fav-icon"></i>
</div>
<img src="image/p2.jpg" class="img-fluid" />
<h5 class="p-name">Samsung Galaxy S23 Ultra</h5>
<p>(12GB + 256GB) (Green)</p>
<h4 class="p-price">Rs.449,999</h4>
<div class="star" style="color: #1c1c5043;">
<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>
<button class="btn-addtocart justify-content-center ms-4">
ADD TO CART
</button>
</div>
<!-- Phone 3 -->
<div class="product text-center col-lg-3 col-md-4 py-5">
<div class="row text-end pb-5" style="margin-top: -30px; margin-right: -7px;">
<i class="fa-solid fa-heart text-end fav-icon"></i>
</div>
<img src="image/p3.jpg" class="img-fluid" />
<h5 class="p-name">iPhone 14 Pro</h5>
<p>(6GB + 128GB) (Black)</p>
<h4 class="p-price">Rs.549,999</h4>
<div class="star" style="color: #1c1c5043;">
<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>
<button class="btn-addtocart justify-content-center ms-4">
ADD TO CART
</button>
</div>
<!-- Phone 4 -->
<div class="product text-center col-lg-3 col-md-4 py-5">
<div class="row text-end pb-5" style="margin-top: -30px; margin-right: -7px;">
<i class="fa-solid fa-heart text-end fav-icon"></i>
</div>
<img src="image/p4.jpg" class="img-fluid" />
<h5 class="p-name">iPhone 14 Pro Max</h5>
<p>(6GB + 128GB) (Gold)</p>
<h4 class="p-price">Rs.599,999</h4>
<div class="star" style="color: #1c1c5043;">
<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>
<button class="btn-addtocart justify-content-center ms-4">
ADD TO CART
</button>
</div>
<!-- view all -->
<div class="container">
<a href="products.html#phone" style="text-decoration: none;"><button
class="mx-auto d-block img-fluid mb-4 btn-viewAll">VIEW ALL</button></a>
</div>
<!-- Banner -->
<div class="container">
<img src="image/img4.jpg" class="mx-auto d-block img-fluid" />
</div>
<div class="row mx-auto container-fluid">
<!-- lap 1 -->
<div class="product text-center col-lg-3 col-md-4 py-5">
<div class="row text-end pb-5" style="margin-top: -30px; margin-right: -7px;">
<i class="fa-solid fa-heart text-end fav-icon"></i>
</div>
<img src="image/lap1.jpg" class="img-fluid" />
<h5 class="p-name">ASUS ROG Strix G15</h5>
<p>(G513RC-HN011W) Eclipse Gray</p>
<h4 class="p-price">Rs.689,999</h4>
<div class="star" style="color: #1c1c5043;">
<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>
<button class="btn-addtocart justify-content-center ms-4">
ADD TO CART
</button>
</div>
<!-- lap 2 -->
<div class="product text-center col-lg-3 col-md-4 py-5">
<div class="row text-end pb-5" style="margin-top: -30px; margin-right: -7px;">
<i class="fa-solid fa-heart text-end fav-icon"></i>
</div>
<img src="image/lap2.jpg" class="img-fluid" />
<h5 class="p-name">ASUS TUF Gaming F17</h5>
<p>(FX507HCB-HN140W) Gray</p>
<h4 class="p-price">Rs.645,499</h4>
<div class="star" style="color: #1c1c5043;">
<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>
<button class="btn-addtocart justify-content-center ms-4">
ADD TO CART
</button>
</div>
<!-- lap 3 -->
<div class="product text-center col-lg-3 col-md-4 py-5">
<div class="row text-end pb-5" style="margin-top: -30px; margin-right: -7px;">
<i class="fa-solid fa-heart text-end fav-icon"></i>
</div>
<img src="image/lap3.jpg" class="img-fluid" />
<h5 class="p-name">ASUS TUF Dash F15 Gaming</h5>
<p>(FX515ZE-HN160W) Off Black</p>
<h4 class="p-price">Rs.534,999</h4>
<div class="star" style="color: #1c1c5043;">
<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>
<button class="btn-addtocart justify-content-center ms-4">
ADD TO CART
</button>
</div>
<!-- lap 4 -->
<div class="product text-center col-lg-3 col-md-4 py-5">
<div class="row text-end pb-5" style="margin-top: -30px; margin-right: -7px;">
<i class="fa-solid fa-heart text-end fav-icon"></i>
</div>
<img src="image/lap4.jpg" class="img-fluid" />
<h5 class="p-name">MSI Alpha 15 Gaming</h5>
<p>(ALPHA15 B5EEK) Black</p>
<h4 class="p-price">Rs.494,990</h4>
<div class="star" style="color: #1c1c5043;">
<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>
<button class="btn-addtocart justify-content-center ms-4">
ADD TO CART
</button>
</div>
</div>
<!-- view all -->
<div class="container">
<a href="products.html#laptop" style="text-decoration: none;"><button
class="mx-auto d-block img-fluid mb-4 btn-viewAll">VIEW ALL</button></a>
</div>
</section>
<!-- img carousel 2 -->
<div id="carousel-Fade" class="carousel slide carousel-fade" data-bs-ride="carousel" style="margin-top: -90px;">
<div class="carousel-inner">
<div class="carousel-item active" data-bs-interval="3000">
<img src="image/img5.webp" class="d-block w-100">
</div>
<div class="carousel-item" data-bs-interval="3000">
<img src="image/img6.webp" class="d-block w-100">
</div>
<div class="carousel-item" data-bs-interval="3000">
<img src="image/img7.webp" class="d-block w-100">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carousel-Fade" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carousel-Fade" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!-- other products -->
<div class="row mx-auto container">
<!-- other 1 -->
<div class="product text-center col-lg-4 col-md-6 py-5">
<div class="row text-end pb-5" style="margin-top: -30px; margin-right: -7px;">
<i class="fa-solid fa-heart text-end fav-icon"></i>
</div>
<img src="image/t1.avif" class="img-fluid" />
<h5 class="p-name">SAMSUNG AU8000 CRYSTAL UHD 4K <br> SMART TV (2022) 55"</h5>
<p style="text-decoration: line-through; font-size: large;">Rs.399,990</p>
<h4 class="p-price">Rs.369,990</h4>
<div class="star" style="color: #1c1c5043;">
<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>
<button class="btn-addtocart justify-content-center ms-4">
ADD TO CART
</button>
</div>
<!-- other 2 -->
<div class="product text-center col-lg-4 col-md-6 py-5">
<div class="row text-end pb-5" style="margin-top: -30px; margin-right: -7px;">
<i class="fa-solid fa-heart text-end fav-icon"></i>
</div>
<img src="image/t2.avif" class="img-fluid" />
<h5 class="p-name">SAMSUNG AU7700 CRYSTAL 4K UHD <br> SMART TV 43" (2021)</h5>
<p style="text-decoration: line-through; font-size: large;">Rs.289,990</p>
<h4 class="p-price">Rs.254,990</h4>
<div class="star" style="color: #1c1c5043;">
<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>
<button class="btn-addtocart justify-content-center ms-4">
ADD TO CART
</button>
</div>
<!-- other 3 -->
<div class="product text-center col-lg-4 col-md-6 py-5">
<div class="row text-end pb-5" style="margin-top: -30px; margin-right: -7px;">
<i class="fa-solid fa-heart text-end fav-icon"></i>
</div>
<img src="image/t3.jpg" class="img-fluid" width="300px" />
<h5 class="p-name">SAMSUNG FULL HD <br> SMART LED TV 43"</h5>
<p style="text-decoration: line-through; font-size: large;">Rs.229,990</p>
<h4 class="p-price">Rs.199,990</h4>
<div class="star" style="color: #1c1c5043;">
<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>
<button class="btn-addtocart justify-content-center ms-4">
ADD TO CART
</button>
</div>
</div>
<!-- view all -->
<div class="container">
<a href="products.html#other-products" style="text-decoration: none;"><button
class="mx-auto d-block img-fluid mb-4 btn-viewAll">VIEW ALL</button></a>
</div>
<!-- customer sevice -->
<section class="container-fluid mt-5" style="background-color: aqua; margin-bottom: -50px;">
<div class="row text-center">
<div class="col-lg-3 col-md-6">
<i class="fa-solid fa-truck-fast mb-3 mt-5" style="font-size: 35px;"></i>
<h5>Free Islandwide Delivery</h5>
<p class="mb-5">For orders above Rs.100,000</p>
</div>
<div class="col-lg-3 col-md-6">
<i class="fa-solid fa-cart-arrow-down mb-3 mt-5" style="font-size: 35px;"></i>
<h5>Best Price Guarantee</h5>
<p class="mb-5">Lowest possible prices</p>
</div>
<div class="col-lg-3 col-md-6">
<i class="fa-regular fa-credit-card mb-3 mt-5" style="font-size: 35px;"></i>
<h5>Easy Payment Plans</h5>
<p class="mb-5">Instalment plans, offers & more</p>
</div>
<div class="col-lg-3 col-md-6">
<i class="fa-solid fa-headset mb-3 mt-5" style="font-size: 35px;"></i>
<h5>After Sales Service</h5>
<p class="mb-5">Customer support</p>
</div>
</div>
</section>
<!-- footer -->
<footer class="footer" style="margin-top: 50px;">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<h1>NEW TECH</h1>
<p>
No 361 Galle Road, <br>
Colombo 03, Sri Lanka. <br>
</p>
<br />
<strong id="ContactUs"><i class="fas fa-phone"></i> HOTLINE : +94 123 123 123</strong>
<br /><br />
<strong><i class="fa-solid fa-envelope"></i>
Email : newtech@gmail.com <br /><br /></strong>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4 style="color: aqua;" id="quick-link">Quick Links</h4>
<ul class="h6 mt-3">
<a href="index.html" style="text-decoration: none;">
<li>Home</li>
</a>
<a href="products.html" style="text-decoration: none;">
<li>Products</li>
</a>
<a href="#AboutUs" style="text-decoration: none;">
<li>About Us</li>
</a>
<a href="#ContactUs" style="text-decoration: none;">
<li>Contact Us</li>
</a>
</ul>
</div>
<div class="col-lg-3 col-md-6">
<h4 style="color: aqua;" id="AboutUs">About New Tech</h4>
<p class="mt-4">New Tech (Pvt) Ltd is one of the leading online store that buys and sells
quality electronic
items in Sri Lanka.</p>
</div>
<div class="col-lg-3 col-md-6 b-icon">
<h4 style="color: aqua;">Our Social Network</h4>
<h6 class="mt-4">Keep In Touch</h6>
<div class="ms-0 mt-3">
<i class="fa-brands fa-facebook-f fbtn" style="padding: 7px;"></i>
<i class="fa-brands fa-twitter tbtn" style="padding: 7px;"></i>
<i class="fa-brands fa-instagram ibtn" style="padding: 7px;"></i>
<i class="fa-brands fa-linkedin-in fbtn" style="padding: 7px;"></i>
</div>
</div>
</div>
</div>
</div>
<hr>
<div class="container py-4">
<div class="copyright">
Copyright © 2023 <strong>New Tech</strong>. All Rights Reserved.
</div>
</div>
</footer>
<!-- js links -->
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"></script>
</body>
</html>