-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
111 lines (96 loc) · 4.02 KB
/
about.php
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
<!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 href="./css/styles.css" rel="stylesheet" />
<link href="./css/about.css" rel="stylesheet" />
<title>About</title>
<style>
.background{
min-height:100vh;
/* justify-content:center; */
align-items:center;
position:relative;
}
.background::before{
content:'';
background-image: url('assets/img/bsu.png') ;
background-repeat:no-repeat;
background-size:cover;
background-position:center;
position:absolute;
top:-20px;
left:0;
bottom:0;
right:0;
opacity:0.7;
}
</style>
</head>
<div class="background">
<nav class="navbar">
<div class="logo">
<img src="assets/img/logo.png" alt="logo" width="56" height="56" class="logo">
Arfun
</div>
<a href="#" class="toggle-btn">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="navbar-links">
<ul>
<li><a href="adminLogin.php">Home</a></li>
<li><a href="about.php">About</a></li>
<!-- <li><a href="#">Services</a></li> -->
<!-- <li><a href="#">Contact</a></li> -->
</ul>
</div>
</nav>
<div class="content">
<div class="main-content">
<div class="content-1">
<h2>About ArFun</h2>
<p>ARFUN is a mobile e-learning program that offers lessons on the Araling Panlipunan topic. The web and mobile applications provide features that can assist instructors and students in understanding the material, and they will also enhance their educational experience. </p>
</div>
<div class="content-2">
<h2>Who are we?</h2>
<p>The developers are Bachelor of Science in Information Technology students from Bulacan State University Sarmiento Campus.</p>
<div class="dev-info">
<img src="./assets/img/groupMembers/Ron.jpeg" width="125" height="125">
<p class="name">Abacial, Rolando <br>UI/UX Designer</p>
</div>
<div class="dev-info">
<img src="./assets/img/groupMembers/Joy.jpg" width="125" height="125">
<p class="name">
Desales, Mary Joy
<br>Front-End Developer</p>
</div>
<div class="dev-info">
<img src="./assets/img/groupMembers/kurt.jpg" width="125" height="125">
<p class="name">
Francisco, Kurt Russell
<br>Full Stack Developer</p>
</div>
<div class="dev-info">
<img src="./assets/img/groupMembers/veronica.jpg" width="125" height="125">
<p class="name">Francisco, Veronica
<br>Project Leader</p>
</div>
<div class="dev-info">
<img src="./assets/img/groupMembers/adrian.jpg" width="125" height="125">
<p class="name">
Singh, Adrian Gaile
<br>Back-end Developer</p>
</div>
<div class="contact">
<h4>Contact us:</h4>
<a href="mailto:arfuncapstonw007@gmail.com">arfuncapstone007@gmail.com</a>
</div>
</div>
</div>
</div>
</div>
</html>