-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
117 lines (105 loc) · 5.34 KB
/
about.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
<!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">
<link rel="stylesheet" href="css/about.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<title>About us</title>
</head>
<body>
<section class="about-us">
<div class="container text-center">
<h2 class="fs-2">About Us</h2>
<p class="fs-4">It is where the people seeking voluntary jobs are linked to the <br> various organizations
offering voluntary jobs There are also internship opportunities. Several jobs are posted daily providing
people with opportunities to get voluntary jobs</p>
</div>
</section>
<section class="newslater text-center pt-3">
<div class="container">
<h2 class="fs-2">We are committed to our services</h2>
<p class="fs-4">You can subscribe to the newslater</p>
<div class="input-group mb-3">
<input type="email" class="form-control" placeholder="enter your email"
aria-label="Recipient's username" aria-describedby="button-addon2">
<button class="btn btn-primary" type="button" id="news" onclick=" newslater()" value="">submit</button>
</div>
</div>
<div class="testimonial">
<div class="container">
<h2 class="text-center fs-2">Testimonials</h2>
<p class="fs-4">Several customers have goten voluntary jobs through our website</p>
<div class="row">
<div class="col-md-4 text-center">
<div class="user-profile">
<img src="assets/ft-about/images (1).jpeg" class="user" alt="user1"><br><br>
<blockquote>
I was looking for a job adn this was the best site i ever came across because i applied
for a job and i was able to get it after a week
</blockquote>
<h4>Rose George</h4>
</div>
</div>
<div class="col-md-4 text-center">
<div class="user-profile">
<img src="assets/ft-about/images (2).jpeg" class="user" alt="user2"><br><br>
<blockquote>
I knew this application from a friend who also got a voluntary job and i would recommend
it to anyone who wishes to do a voluntary job.
</blockquote>
<h4>Robert Lee</h4>
</div>
</div>
<div class="col-md-4 text-center">
<div class="user-profile">
<img src="assets/ft-about/images (3).jpeg" class="user" alt="user3"><br><br>
<blockquote>
This is the best site i've ever seen. You are notified about the available jobs and the
non governmental organizations offering the job
</blockquote>
<h4>John George</h4>
</div>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="social-icons text-white">
<div class="row">
<div class="col">
<ul class="footer-nav pt-4">
<li><a href="#">About us</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Press</a></li>
<li><a href="#">Partners</a></li>
</ul>
</div>
<div class="col">
<ul>
<li><a href="#"><i class="ion-social-facebook social facebook"></i></a></li>
<li><a href="#"><i class="ion-social-googleplus social googleplus"></i></a></li>
<li><a href="#"><i class="ion-social-twitter social twitter"></i></a></li>
<li><a href="#"><i class="ion-social-skype social skype"></i></a></li>
<li><a href="#"><i class="ion-social-instagram social instagram"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="row p-5">
<p class="text-white text-center fs-4">copyright © 2021 Voluntary Jobs Hub .</p>
</div>
</div>
</footer>
<a href="index.html" class="scroll-up-btn">
<i class="fas fa-arrow-up"></i>
</a>
<script src="js/about.js"></script>
</body>
</html>