-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
133 lines (121 loc) · 4.72 KB
/
team.html
File metadata and controls
133 lines (121 loc) · 4.72 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Q - The queue - Team Page</title>
<link href="https://fonts.googleapis.com/css?family=Indie+Flower|Roboto" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<link rel='icon' href='img/logo.png' type='image/x-icon'>
</head>
<body>
<div class = "teamPage">
<header>
<div class = "logo">
<img src="img/logo.png" alt="'Q' the letter as a logo of the company">
<h2>THE QUEUE</h2>
</div>
<div class = "onlyForMobile">
<nav>
<a href = "Landing page-students.html">Student? Click here</a>
</nav>
<button onclick = "location.href = 'https://queue.bw-dev-desk-queue-1.now.sh/';">Sign Up</button>
</div>
<div class ="links">
<nav>
<a href = "Landing page-students.html">For Students</a>
<a href = "features.html">Features</a>
<a href = "team.html">Team</a>
<a href = "https://queue.bw-dev-desk-queue-1.now.sh/">Login</a>
</nav>
</div>
</header><!--end of header-->
<section class = "Developers">
<div class = "UX">
<a href="http://linkedin.com/in/alisonrebeccamartin">
<div>
<img src="img/alisonMartin.jpg" alt="Alison Martin user experience designer">
<p>Alison Martin<br>
User Experince Designer</p>
</div>
</a>
</div><!--end of UX-->
<div class = "UI">
<a href="https://github.com/jclark208">
<div>
<img src="img/jacobClark.jpg" alt="Jacob Clark user interface developer">
<p>Jacob Clark<br>
User Interface Developer</p>
</div>
</a>
<a href="https://github.com/Aleksei-Zaichenko">
<div>
<img src="img/alekseiZaichenko.jpg" alt="Aleksei Zaichenko user interface developer">
<p>Aleksei Zaichenko <br>
User Interface Developer</p>
</div>
</a>
</div><!--end of UI-->
<div class = "ReactOne">
<a href="https://github.com/KyleCole01">
<div>
<img src="img/kyleCole.png" alt="Kyle Cole Web React Developer">
<p>Kyle Cole<br>
Web React Developer</p>
</div>
</a>
<a href="https://github.com/fireblastdaniel">
<div>
<img src="img/danielPrue.png" alt="Daniel Prue Web React Developer">
<p>Daviel Prue<br>
Web React Developer</p>
</div>
</a>
</div><!--end of ReactOne-->
<div class = "ReactTwo">
<a href="https://github.com/NWKendall">
<div>
<img src="img/nicKendall.jpg" alt="Young Won Web React Developer">
<p>Nic Kendall<br>
Web React Developer</p>
</div>
</a>
<a href="https://github.com/premputtegowda">
<div>
<img src="img/premPuttegowda.png" alt="David Tauraso Web React Developer">
<p>Prem Puttegowda<br>
Web React Developer</p>
</div>
</a>
</div><!--end of ReactTwo-->
<div class = "BackEnd">
<a href="https://github.com/youngw417">
<div>
<img src="img/youngWon.jpg" alt="Young Won Back End Developer">
<p>Young Won<br>
Back End Developer</p>
</div>
</a>
<a href="https://github.com/dtauraso">
<div>
<img src="img/davidTauraso.png" alt="David Tauraso Back End Developer">
<p>Daviel Tauraso<br>
Back End Developer</p>
</div>
</a>
</div><!--end of BackEnd-->
</section><!--end of Developers-->
<div class = "onlyForMobile">
<footer>
<nav class = "LinksOnTheBottom">
<a href = "Landing page-students.html">Students</a>
<a href = "features.html">Features</a>
<a href = "team.html">Team</a>
<a href = "https://queue.bw-dev-desk-queue-1.now.sh/">Login</a>
</nav>
<p>A Lambda School Build student project</p>
</footer>
</div><!--end of onlyForMobile-->
</div><!--end of teamPage-->
</body>
</html>