generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
81 lines (78 loc) · 4.1 KB
/
footer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Website Title -->
<title>Leaders</title>
<!-- CSS Styling -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
type="text/css" />
<!-- Google Fonts API -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
type="text/css" />
</head>
<body>
<!-- Footer Section -->
<footer id="footer-section">
<!-- Credit: https://bit.ly/37LzS5F and customized for this project's requirements -->
<div class="footer-top">
<div class="container">
<div class="row">
<!-- Column 1: About -->
<div class="col-md-3 col-sm-6 col-xs-12 segment-one md-mb-30 sm-mb-30">
<h2>About</h2>
<p>Passionate professional with 7+ years of international experience working at
national/multinational corporations and tech startups.
</p>
</div>
<!-- Column 2: Services -->
<div class="col-md-3 col-sm-6 col-xs-12 segment-two md-mb-30 sm-mb-30">
<h2>Services</h2>
<ul>
<li><a href="#services">Consulting</a></li>
<li><a href="#services">Strategy</a></li>
<li><a href="#services">Management</a></li>
<li><a href="#services">Training</a></li>
<li><a href="#services">Mentoring</a></li>
<li><a href="#services">Speaking</a></li>
</ul>
</div>
<!-- Column 3: Social Media -->
<div class="col-md-3 col-sm-6 col-xs-12 segment-three sm-mb-30">
<h2>Follow</h2>
<p>Follow me on social media channels if you would like to have access to daily digestable
valuable content!
</p>
<a href="https://www.linkedin.com/" target="_blank" rel="noopener"><i
class="fa fa-linkedin"><span class="sr-only">LinkedIn</span></i></a>
<a href="https://www.facebook.com/" target="_blank" rel="noopener"><i
class="fa fa-facebook"><span class="sr-only">Facebook</span></i></a>
<a href="https://www.instagram.com/" target="_blank" rel="noopener"><i
class="fa fa-instagram"><span class="sr-only">Instagram</span></i></a>
<a href="https://twitter.com/" target="_blank" rel="noopener"><i class="fa fa-twitter"><span
class="sr-only">Twitter</span></i></a>
</div>
<!-- Column 4: Newsletter -->
<div class="col-md-3 col-sm-6 col-xs-12 segment-four sm-mb-30">
<h2>Newsletter</h2>
<p>Subscribe if you would like to receive regular event updates, exclusive content, discounts,
monthly insights!</p>
<form>
<label for="email">Email Address</label>
<input type="email" id="email" placeholder="Email Address">
<label for="submit">Submit</label>
<input type="submit" id="submit" value="Subscribe">
</form>
</div>
</div>
</div>
</div>
<p class="footer-bottom-text">All Rights Reserved | © Effie Manyos 2021</p>
</footer>
</body>
</html>