-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
67 lines (58 loc) · 1.85 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<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" type="text/css" href="about.css" />
<title>Link CSS to HTML</title>
</head>
</head>
<body>
<div class="about-section">
<h1>About Us </h1>
<p>Bendera is a specialized web app catering towards people who want to learn about different flags of the world.</p>
</div>
<h2 style="text-align:center">Our Team</h2>
<div class="row">
<div class="column">
<div class="card">
<img src="team1.jpg" alt="Jane" style="width:100%">
<div class="container">
<h2>Wendo Githaka</h2>
<p class="title">CEO & Founder</p>
<p>Githaka is a vexillogist & geography nerd who developed this site.</p>
<p>githakawendowa@gmail.com</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="team2.jpg" alt="Mike" style="width:100%">
<div class="container">
<h2>Tana Maina</h2>
<p class="title">Geography expert</p>
<p>Tana is one of the geography experts assisting in research development.</p>
<p>tanam@example.com</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="team4.jpg" alt="John" style="width:100%">
<div class="container">
<h2>Kena Maina</h2>
<p class="title">Designer</p>
<p>Assisted in application testing and further devp.</p>
<p>kenamain@gmail.com</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
</div>
</body>
</html>