-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
85 lines (72 loc) · 2.78 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/index.css">
<link rel="icon" type="image/png" href="./img/yelp-burst.png">
<title>Yelp Tacopaedia - About Us</title>
</head>
<body>
<!-- Header -->
<header>
<div class="header-wrap">
<div class="branding">
<a href="index.html" class="img-link"><img src="./img/yelp-logo.svg" alt="Yelp"></a>
<a href="index.html" class="text-link"><h1>Tacopedia</h1></a>
</div>
<a href="https://tacopedia.netlify.com" class="text-link" id="header-start">Get Started</a>
</div>
</header>
<!-- Showcase -->
<section class="showcase">
<div class="main-heading">
<div class="yelp-logo-large"></div>
<h2>About Us</h2>
</div>
</section>
<!-- About Us -->
<section class='about-us'>
<h2>Meet Our Team</h2>
<div class="team-members">
<div class="profile-box">
<img src="./img/profile imgs/leo.jpg" alt="Leo Lam">
<h3>Leo Lam</h3>
<p>Team Leader</p>
</div>
<div class="profile-box">
<img src="./img/profile imgs/shaun.jpg" alt="Shaun Carmody">
<h3>Shaun Carmody</h3>
<p>Frontend Architect</p>
</div>
<div class="profile-box">
<img src="./img/profile imgs/jb.jpg" alt="JB Miranda">
<h3>JB Miranda</h3>
<p>Backend Architect</p>
</div>
<div class="profile-box">
<img src="./img/profile imgs/chris.jpg" alt="Chris Seiler">
<h3>Chris Seiler</h3>
<p>Data Scientist</p>
</div>
<div class="profile-box">
<img src="./img/profile imgs/zarrina.jpg" alt="Zarrina">
<h3>Zarrina Niyazova</h3>
<p>Data Scientist</p>
</div>
<div class="profile-box">
<img src="./img/profile imgs/mario.jpg" alt="Mario Amaya">
<h3>Mario Amaya</h3>
<p>UI Developer</p>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-wrap">
<a href="index.html">Home</a>
</div>
</footer>
</body>
</html>