-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteam.html
108 lines (102 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Anywhere Fitness</title>
<link rel="stylesheet" href="css\index.css" />
<link rel="shortcut icon" type="image/png" href="images\AF-fav.png" />
<link
href="https://fonts.googleapis.com/css?family=Bowlby+One+SC&display=swap"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<header>
<a href="index.html"
><img src="images\AF Logo.svg" alt="Anywhere Fitness logo" height="90px"
/></a>
<nav>
<a href="https://bw-anywhere-fitness-3.github.io/FE/"
>REGISTER / LOGIN</a
>
</nav>
</header>
<div class="tp_sitecontainer">
<h1 class="tp_intro">The Anywhere Fitness Team</h1>
<section class="team">
<div class="cardContainer">
<img
src="images\Team Profile Pics\Gabe---UI.jpg"
alt="A profile picture."
width="100%"
/>
<h2>Gabriel Romero</h2>
<p>UI Developer</p>
</div>
<div class="cardContainer">
<img
src="images\Team Profile Pics\Danny---React1.jpg"
alt="A map with locations pinned on it."
width="100%"
/>
<h2>Danny Abbott</h2>
<p>React 1 Developer</p>
</div>
<div class="cardContainer">
<img
src="images\Team Profile Pics\M---React.jpg"
alt="A group practicing zumba in a studio."
width="100%"
/>
<h2>M Groesbeck</h2>
<p>React 1 Developer</p>
</div>
</section>
<section class="team">
<div class="cardContainer">
<img
src="images\Team Profile Pics\Guy---React2.jpg"
alt="A profile picture."
width="100%"
/>
<h2>Guyton M. Oriji</h2>
<p>React 2 Developer</p>
</div>
<div class="cardContainer">
<img
src="images\Team Profile Pics\OT.jpg"
alt="A map with locations pinned on it."
width="100%"
/>
<h2>Otabek Akbarov</h2>
<p>Back-end Developer</p>
</div>
<div class="cardContainer">
<img
src="images\Team Profile Pics\Dan---BE.jpg"
alt="A group practicing zumba in a studio."
width="100%"
/>
<h2>Dan Cashion</h2>
<p>Back-end Sorcerer</p>
</div>
</section>
<section class="teamPL">
<div class="cardContainer">
<img
src="images\Team Profile Pics\Dustin---TL.jpg"
alt="A group practicing zumba in a studio."
width="100%"
/>
<h2>Dustin Graham</h2>
<p>Project Lead</p>
</div>
</section>
</div>
<!-- sitecontainer ends -->
<footer>
<h6>©2020 Anywhere Fitness</h6>
</footer>
</body>
</html>