-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (71 loc) · 2.65 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
<!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">
<title>Footer | Abdullah </title>
<!-- stylesheet -->
<link rel="stylesheet" href="style.css">
<!--FONT AWESOME-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--GOOGLE 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=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
</head>
<body>
<!--footer-->
<footer class="padding_4x">
<div class="flex">
<section class="flex-content padding_1x">
<h3>Top Products</h3>
<a href="#">Managed Website</a>
<a href="#">Manage Reputation</a>
<a href="#">Power Tools</a>
<a href="#">Marketing Service</a>
</section>
<section class="flex-content padding_1x">
<h3>Quick Links</h3>
<a href="#">Jobs</a>
<a href="#">Brand Assets</a>
<a href="#">Investor Relations</a>
<a href="#">Terms of Service</a>
</section>
<section class="flex-content padding_1x">
<h3>Features</h3>
<a href="#">Jobs</a>
<a href="#">Brand Assets</a>
<a href="#">Investor Relations</a>
<a href="#">Terms of Service</a>
</section>
<section class="flex-content padding_1x">
<h3>Resources</h3>
<a href="#">Guides</a>
<a href="#">Research</a>
<a href="#">Experts</a>
<a href="#">Agencies</a>
</section>
<section class="flex-content padding_1x">
<h3>Newsletter</h3>
<p>You can trust us. we only send promo offers,</p>
<fieldset class="fixed_flex">
<input type="email" name="newsletter" placeholder="Your Email Address">
<button class="btn btn_2">Subscribe</button>
</fieldset>
</section>
</div>
<div class="flex">
<section class="flex-content padding_1x">
<p>Copyright ©2023 All rights reserved || Abdullah</p>
</section>
<section class="flex-content padding_1x">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-dribbble"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</section>
</div>
</footer>
</body>
</html>