-
Notifications
You must be signed in to change notification settings - Fork 0
/
about-our-team.html
106 lines (100 loc) · 3.73 KB
/
about-our-team.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
<!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">
<title>Population Density Checker - About Our Team</title>
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/about-our-team.css">
</head>
<body>
<header>
<a href="index.html">
<img src="./assets/images/population-density-checker-logo-alt-white.svg" />
<h1>Population Density Checker</h1>
</a>
<div>
<nav>
<ul>
<li>
<a class="hover:bg-orange-600" href="./about-our-team.html">Our Team</a>
</li>
<li>
<a class="hover:bg-orange-600" href="./services.html">Services offered</a>
<!-- added these from tailwind -->
</li>
<li>
<a class="hover:bg-orange-600" href="./login.html">Login</a>
<!-- added these from tailwind -->
</li>
<li>
<a class="hover:bg-green-600" href="./map.html">MAP</a>
</li>
<li>
<a class="hover:bg-orange-600" href="./recommended.html">Recommended</a>
<!-- added these from tailwind -->
</li>
</ul>
</nav>
</div>
</header>
<main>
<h2>More About our Team</h2>
<h2>Meet the Team </h2>
<div class="row">
<div class="column">
<div class="card">
<img src="./images/Brian.png" alt="Brian" style="width:100%">
<div class="container">
<h2>Brian Lockerbie</h2>
<p class="title">Founder</p>
<p>I am currently enrolled at U of T SCS Coding Bootcamp. I have experience in HTML, CSS & JavaScript.</p>
<p><button class="button"> <a href="mailto:brian.lockerbie@gmail.com">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="./images/Sharon.png" alt="Sharon" style="width:100%">
<div class="container">
<h2>Sharon Christensen</h2>
<p class="title">Founder</p>
<p>Media Specialist by day. Student at U of T Fullstack Bootcamp by night. Experienced in HTML, CSS, JavaScript, and sleep deprevation.</p>
<p><button class="button"><a href="mailto:sharonchristensen@live.com">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="./images/Swapna.png" alt="Swapna" style="width:100%">
<div class="container">
<h2>Swapna Menon</h2>
<p class="title">Founder</p>
<p>Recuiter pursuing Coding, currently enrolled in the UFT SCS Coding bootcamp</p>
<p><button class="button"> <a href="mailto:swapnamenon8@gmail.com">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="./images/royden.png" alt="Royden" style="width:100%">
<div class="container">
<h2>Royden Semedo</h2>
<p class="title">Founder</p>
<p>Currently enrolled with hopes of completing this CSC bootcamp</p>
<p><button class="button"> <a href="mailto:Roydensemedo@yahoo.ca">Contact</button></p>
</div>
</div>
</div>
</div>
<h2>Our Goals</h2>
<p>Our goals include creating informative applications that solve real world problems.</p>
</main>
<footer>
<script src="./assets/js/script.js"></script>
<h2>Copyright © 2022 PDC Inc. All Rights Reserved.</h2>
<h3>Last updated March 2022.</h3>
</footer>
</body>
</html>