-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutUs.html
134 lines (119 loc) · 5.4 KB
/
aboutUs.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About-us</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/about.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header id='myHeader'>
<div>
<img src="img/logoAnimated.gif">
</div>
<nav id='myNavbar'>
<ul>
<li>
<i class="fa fa-home" aria-hidden="true"></i>
<a href="index.html">Home</a></li>
<li>
<i class="fa fa-plus" aria-hidden="true"></i>
<a href="addQuestion.html"> Add Questions</a></li>
<li>
<i class="fa fa-address-card" aria-hidden="true"></i>
<a href="profile.html"> Profile</a>
</li>
<li>
<i class="fa fa-user" aria-hidden="true"></i>
<a href="aboutUs.html">About Us</a></li>
</ul>
</nav>
</header>
<main>
<div id="aboutApp">
<div id="teamMembers">
TEAM MEMBERS
</div>
<div id="aboutDevelopres">
<div class="developers" id="a1">
<img class=" profileImg" id="roqaiaImg" src="img/roqaia.jpg" title="roqaia salahi">
</div>
<div class="developers" id="a2">
<img class=" profileImg" id="yahyaImg" src="img/yahya.PNG" title="yahya abukhaleel">
</div>
<div class="developers" id="a3">
<img class=" profileImg" id="daoudImg" src="img/daoud.PNG" title="daoud nazek">
</div>
<div class="developers" id="a4">
<img class=" profileImg" id="raniaImg" src="img/rania.PNG" title="rania qatawneh">
</div>
<div class="developers" id="a5">
<img class=" profileImg" id="ahmadImg" src="img/ahmad3.PNG" title="Ahmad Alhrthani">
</div>
<a class="note sticky1">
<div class='pin'></div>
<div class='text'><p>Roqaia Salahi</p>
I am a Syrian currently living in Jordan.
I have a bachelor degree in civil engineering and
now I am taking courses in software development by ASAC.
</div>
</a>
<a class="note sticky2">
<div class='pin'></div>
<div class='text'><p>Yahya Abu Khalil</p>
Electrical power and renewable engineering graduate,
with a background in script making.
Couple of mini projects that made me pursue
software development full time inspired by the corona lock-down
</div>
</a>
<a class="note sticky3">
<div class='pin'></div>
<div class='text'><p>Rania Qatawneh</p>
20 years old from Jordan, bachelor in physics,
currently a student at ASAC to learn programming.</div>
</a>
<a class="note sticky4">
<div class='pin'></div>
<div class='text'><p>Ahmad Alherthani</p>
I am doing my master's degree in in Computer Science.
During my masters study, I won a mobility scholarship to TUWIEN.
I worked as a freelance IT specialist for 10 years.</div>
</a>
<a class="note sticky5">
<div class='pin'></div>
<div class='text'><p>Daoud Nazek</p>Holder of a bechlor degree in
mechanical engineering from the Hashemite university.
I started to think about a new path in my life, so now I am studying web development
and taking code fellows course provided by Ltuc.</div>
</a>
</div>
<div id="info">
<img id="playImg" src="img/logoAnimated.gif" height="150px">
<p><i>An out of the word Learning Experience</i> <br>
play & learn is an edtech proof of concept to capture student attention and
study their curriculum along the journey.<br>
</p>
</div>
</div>
</main>
<footer>
<div id="copyRight">
© LTUC
</div>
<div>
<a href="https://www.facebook.com/"><i class="fa fa-facebook-square" aria-hidden="true"></i></a>
<a href="https://github.com/login">
<i class="fa fa-github" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/">
<i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
<a href="https://ads.twitter.com/">
<i class="fa fa-twitter" aria-hidden="true"></i></a>
</div>
</footer>
<script src="js/about.js"></script>
</body>
</html>