-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteam.html
134 lines (82 loc) · 3.35 KB
/
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
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>
<link href="https://fonts.googleapis.com/css?family=Anton|Lexend+Tera|Noto+Serif|Cinzel&display=swap"
rel="stylesheet">
<link href="../css/index.css" type="text/css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Team</title>
</head>
<body>
<div class="parent-div">
<section class="ourTeam">
<h1>WHO BUILT THIS APP</h1>
<div class="people">
<div class="person">
<img src="/img/allison.png" alt="">
<a href="https://github.com/allisonkydy">Allison Donnelly</a>
</div>
<div class="person">
<img src="/img/chinedu.png" alt="">
<a href="https://github.com/chineducn">Chinedu Nwume</a>
</div>
<div class="person">
<img src="/img/henry.png" alt="">
<a href="https://github.com/henryarguedas">Henry Souder-Arguedas</a>
</div>
<div class="person">
<img src="/img/megan.png" alt="">
<a href="https://github.com/Celaira">Megan Miller</a>
</div>
<div class="person">
<img src="/img/emma.png" alt="">
<a href="https://github.com/yoshimii">Emma Zarate</a>
</div>
<div class="person">
<img src="/img/nathan.png" alt="">
<a href="https://github.com/nrvanwyck">Nathan Van Wyck</a>
</div>
<div class="person">
<img src="/img/jose.png" alt="">
<a href="https://github.com/Artyk77">Jose Arturo Restrepo</a>
</div>
<div class="person">
<img src="/img/christian.png" alt="">
<a href="https://github.com/Christian-Ford">Christian Ford</a>
</div>
<div class="person">
<img src="/img/khaled.png" alt="">
<a href="https://github.com/khaloodi">Khaled Adad</a>
</div>
<div class="person">
<img src="/img/justine.png" alt="">
<a href="https://github.com/justinelai">Justine Lai</a>
</div>
<div class="person">
<img src="/img/paul.png" alt="">
<a href="https://github.com/llpk79">Paul Kutrich</a>
</div>
<div class="person">
<img src="/img/neha.png" alt="">
<a href="https://github.com/neha-r-p">Neha Patel</a>
</div>
<div class="person">
<img src="/img/adam.png" alt="">
<a>Adam Reynolds</a>
</div>
</div>
</section>
<footer>
<div class="a-div">
<nav>
<a href="index.html">Home</a>
<a href="">About</a>
<a href="team.html">Team</a>
</nav>
</div>
</footer>
</div>
</body>
</html>