-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathabout.php
More file actions
90 lines (87 loc) · 3.19 KB
/
about.php
File metadata and controls
90 lines (87 loc) · 3.19 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
<?php
include('include/header.php');
include('include/config.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
</head>
<body>
<div class="container" style="padding-top:2vw; padding-bottom:2vw;">
<h4 class="container center-align">About Us</h4>
<p style="line-height: 2; font-size: 15px;">Welcome to Sparky Library. This is an online Library where all books can be found. The books on Sparky library are free for download, we do not have a download limit. THe books are all hosted on google drive, and we're always working to add more everyday. We are here for your reading pleasure... Enjoy your read
This idea was brought together by 6 web developers and we put in our best to bring this idea to light</p>
<h4 class="container center-align" style="padding-top: 2vw;">Meet The Team</h4>
<div class="row" style="padding-top:2vw; padding-bottom:2vw;">
<div class="col s12 m4 l4">
<div class="card">
<div class="card-image">
<img src="./image/Ade.jpg" width="250px" height="250px">
</div>
<div class="card-content">
<p>Abiona Quadrat Adewemimo is a problem solver, a
Web Developer. Worked on both the front-end and back-end of this project</p>
</div>
</div>
</div>
<div class="col s12 m4 l4">
<div class="card">
<div class="card-image">
<img src="./image/Ayo.jpeg" width="250px" height="250px">
</div>
<div class="card-content">
<p>Ayomide Olaniran. A full stack web developer, worked on the front-end and back-end of this project with my team mates </p>
</div>
</div>
</div>
<div class="col s12 m4 l4">
<div class="card">
<div class="card-image">
<img src="./image/florence.jpg" width="250px" height="250px">
</div>
<div class="card-content">
<p>Florence Nneoma Asoegwu, new into the tech space, a full stack developer. I am also a writer and I love research.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12 m4 l4">
<div class="card">
<div class="card-image">
<img src="./image/Maryam-salami.png" width="250px" height="250px">
</div>
<div class="card-content">
<p>Maryam Moshood Salami is a reliable, energetic, passionate and ambitious graduate with problem solving skills, Analytical and qualitative abilities.</p>
</div>
</div>
</div>
<div class="col s12 m4 l4">
<div class="card">
<div class="card-image">
<img src="./image/black.jpg" width="250px" height="250px">
</div>
<div class="card-content">
<p>Omono Faith, Fullstack Developer</p>
</div>
</div>
</div>
<div class="col s12 m4 l4">
<div class="card">
<div class="card-image">
<img src="./image/black.jpg" width="250px" height="250px">
</div>
<div class="card-content">
<p>gEdhemuino Mary</p>
</div>
</div>
</div>
</div>
</body>
</html>
<?php
include('include/footer.php')
?>