forked from stuurdean/web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
122 lines (99 loc) · 4.99 KB
/
about.html
File metadata and controls
122 lines (99 loc) · 4.99 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="logo">
<a href="index.html">
<img class="logo-image" src="images/logo.png "/>
</a>
</div>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</header>
<div class="container">
<div class="team">
<h2>Meet Our Team</h2>
<div class="summary">
<p>We work together in coming up with innovative ideas,We're dedicated in building advanced websites.<br>
Grounded and solution-oriented Computer Scientist with a wide variety of professional experiences. <br>
Passionate about data security and educating the next generation of technology users and innovators</p>
</div>
<!--Group the cards and set them to align at the center of the team div-->
<div class="members">
<div class="card">
<img src="images/kgotso.jpg" alt="">
<p style="text-align: center; font-weight: 600;"> Kgotso Matotoka <br> <span style="color:grey; opacity:75%"> Team Leader</span></p>
<p class="p_card">She's an assertive lady,open-minded,career-oriented person,who is resourceful,hardworking and optimistic.</p>
<div class="media-icons">
<a href="#" class="fa fa-twitter"></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="card">
<img src="images/moshele.jpg" alt="">
<p style="text-align: center; font-weight: 600;"> Moshele Seoka<br> <span style="color:grey; opacity:75%"> Developer</span> </p>
<p class="p_card">A certified java associate who is good in designing and prototyping UI/UX,web applications and optimizing to increase web traffic.</p>
<div class="media-icons">
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="card">
<img src="images/stuur.jpg" alt="">
<p style="text-align: center; font-weight: 600;">Stuurman Ramaila<br> <span style="color:grey; opacity:75%"> Developer</span> </p>
<p class="p_card">Specialize in HTML, CSS, JS, Java, C#,C++,Sql and firebase system analyst, system tester and project manager</p>
<div class="media-icons">
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
<div class="card">
<img src="images/img.jpg" alt="">
<p style="text-align: center; font-weight: 600;">Makgothoma Precious<br> <span style="color:grey; opacity:75% "> Developer</span> </p>
<p class="p_card">She's a maltitasking queen who organises our meetings,she keeps everything on track and make sure we deliver our service.</p>
<div class="media-icons">
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
<hr>
<footer>
<a class="copyright" style="padding: 20px 0px 20px 100px;">2020 © Group III ‐ All Right Reserved.</a>
<div class="social_icon_group">
<a href="about.html" class="quicknav">About</a>
<a href="contact.html" class="quicknav">Contact</a>
<a href="#" class="fa fa-facebook" style="margin-left: 30px;"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-linkedin"></a>
</div>
</footer>
<script src="" async defer></script>
</body>
</html>