-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
130 lines (123 loc) · 4.7 KB
/
about.html
File metadata and controls
130 lines (123 loc) · 4.7 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
<!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" />
<title>Noise Controller</title>
<link rel="stylesheet" href="css/index.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.11.2/css/all.css"
integrity="sha384-KA6wR/X5RY4zFAHpv/CnoG2UW1uogYfdnP67Uv7eULvTveboZJg0qUpmJZb5VqzN"
crossorigin="anonymous"
/>
</head>
<body>
<div class="nav-container">
<nav>
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
</nav>
</div>
<div class="container">
<div class="main-content">
<section>
<h1>About Us</h1>
</section>
<section class="about">
<div class="about-member">
<img
src="img/sean-wu.jpg"
alt="Sean Wu posing in a park surrounded by trees."
/>
<div>
<p class="about-member-name">Sean Wu <a href="https://github.com/seanwu20"
><i class="fab fa-github"></i
></a></p>
<p class="about-member-role">Project Lead</p>
<p class="about-member-info">
Gotta catch all them bugs
</p>
</div>
</div>
<div class="about-member">
<img src="img/mark-halls.png" alt="Lead designer Mark Halls" />
<div>
<p class="about-member-name">Mark Halls <a href="https://github.com/mark-halls"
><i class="fab fa-github"></i
></a></p>
<p class="about-member-role">UI Design</p>
<p class="about-member-info">
Coder by day, gamer by night. I'm currently attending Lambda for
Full Stack Web Development. My current favorite language is
Javascript using functional programming concepts.
</p>
</div>
</div>
<div class="about-member">
<img
src="img/carla-marvin.png"
alt="Carla Marvin smiling in a professional portrait."
/>
<div>
<p class="about-member-name">Carla Marvin <a href="https://github.com/CarlaMarvin78"
><i class="fab fa-github"></i
></a></p>
<p class="about-member-role">Backend Design</p>
<p class="about-member-info">
I am currently studying Full Stack Web Development at Lambda
School. When I am not studying or coding websites, I enjoy
reading, writing, drawing, crocheting, movies, and music. I also
thoroughly enjoy the adventure of homeschooling my 11 yr old
son.
</p>
</div>
</div>
<div class="about-member">
<img
src="img/richard-lee-esquivel.jpg"
alt="Richard Lee Esquivel
holding his dog {name}."
/>
<div>
<p class="about-member-name">Richard Lee Esquivel <a href="https://github.com/RichardEsquivel"
><i class="fab fa-github"></i
></a></p>
<p class="about-member-role">Frontend Engineer II</p>
<p class="about-member-info">
I enjoy complex systems even when I can barely understand them.
As a child I played Zelda Majora's Mask in a hot room in Florida
till it powered off due to overheating. I'm here to fill my
dog's food bowl and hopefully fulfill some dreams.
</p>
</div>
</div>
<div class="about-member">
<img
src="img/james-bishop.jpg"
alt="James Bishop looking sharp in
polo shirt."
/>
<div>
<p class="about-member-name">James Bishop <a href="https://github.com/jambis"
><i class="fab fa-github"></i
></a></p>
<p class="about-member-role">Frontend Engineer I</p>
<p class="about-member-info">
Gym rat that enjoys the challenge that comes with coding and
having the ability to create anything imaginable with very few
material limitations.
</p>
</div>
</div>
</section>
</div>
</div>
<footer>
<a href="https://www.freepik.com/free-photos-vectors/nature"
>Nature vector created by brgfx - www.freepik.com</a
>
</footer>
</body>
</html>