-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
133 lines (131 loc) · 6.75 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Cookies & Bytes Team</title>
<link rel="stylesheet" href="styles.css" type="text/css">
<style>
#team-backdrop {
display: block;
position: fixed;
top: 0px;
width: 100%;
height: 800px;
background-image: url('images/background2.jpeg');
background-size: cover;
}
</style>
</head>
<body>
<nav>
<a href="index.html" class="logo"></a>
<ul>
<li><a href="index.html">Home</a></li>
<li>
<div class="dropdown">
<a href="mission.html" class="dropdown-btn">About</a>
<div class="dropdown-links">
<a href="mission.html">Our Mission</a>
<a href="impact.html">Our Impact</a>
<a href="team.html">Our Team</a>
</div>
</div>
</li>
<li><a href="catalog.html">Cookies</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="faq.html">FAQs</a></li>
</ul>
</nav>
<div id="team-backdrop"></div>
<div class="banner-text">
<h1>Our Team</h1>
</div>
<div class="bios">
<h4>Here at Cookies & Bytes, we are proud to be a completely female-run small
business. Learn more about our incredible team below:
</h4>
<h2 class="sub-heading">Our Founder and Chair of Philanthropy, Sam Levine</h2>
<div class="bio">
<img class="photos" src="images/sam.jpeg" alt="profile photo of founder">
<p class ="sub-text">
A Harvard grad from humble beginnings, Sam started her career
as an engineer for the powerhouse consulting firm Consulting & Consultants.
However, she found her dissatisfied with the lack of diversity both throughout her
educational journey and in her corporate line of work, but wasn't sure what
she could do about it.
<br><br>
Meanwhile during the pandemic, she developed a passion for baking
and started to sell her creations as a hobby. The business
picked up overnight, and Sam was still working out of her kitchen when
she decided to leave her full-time job and pursue her new passion. She vowed
to use her growing platform for good, donating a part of her proceeds to help
underrepresented groups in STEM starting from her very first sale. <br><br>
Today, Sam is still heavily involved in the company's daily activities and
leads our philanthrophic efforts.
</p>
</div>
<h2 class="sub-heading">Our CEO, Jane Fatilli</h2>
<div class="bio">
<p class ="sub-text">
Joining us as CEO earlier this year, Jane has been a long standing and outspoken
champion for equity in STEM. Since taking the helm in June, she has already
kicked off several new initiatives and projects aimed at furthering our mission.
<br><br>
Prior to Cookies & Bytes, Jane served as the CEO for companies such as Sodas & Software
and Hamburgers & Hardware. She has an impressive track record as a respected,
results-driven executive leader. Jane's vision for the company includes innovation and
international growth, all the while working closely with Sam to ensure our continued
commitment to funding and promoting STEM education and accessibility.
</p>
<img class="photos" src="images/jane.jpeg" alt="profile photo of CEO">
</div>
<h2 class="sub-heading">Our CTO, Sarah Tam</h2>
<div class="bio">
<img class="photos" src="images/sarah.jpeg" alt="profile photo of CTO">
<p class ="sub-text">
Sarah has been with the company since its inception, helping Sam set up
the original website to ensure orders could be placed quickly and smoothly.
<br><br>
Since then, Sarah has overseen everything from the website to the order
supply chain management system connecting our kitchens to our delivery drivers. Prior
to Cookies & Bytes, Sarah was Vice President of Development at Brownies &
Bitcoin, where she led both the design and product teams. She plans to leverage her
technical background to make the Cookies & Bytes experience as seamless as possible for
everyone.
</p>
</div>
<h2 class="sub-heading">Our CFO, Laura Craft</h2>
<div class="bio">
<p class ="sub-text">
Laura joined Cookies & Bytes in early 2021 as an accountant. She has served as
the interim Chief-Finance Officer since December of 2022, and was officially
appointed to the role last month.
<br><br>
With her background in global finance, she hopes to accelerate the further
expansion of Cookies & Bytes, and provide more support the company's many
new scholarships and grants for young people in STEM. In her personal time, she
also runs a free STEM tutoring summer camp.
</p>
<img class="photos" src="images/laura.jpeg" alt="profile photo of CFO">
</div>
<br><br>
</div>
<footer class="footer">
<div class="footer-content">
<div class="info">
<h3>Stop by for a quick byte!</h3>
<p>✧ 2121 Cherry Road, Brooklyn NY 11293</p>
<p>✧ Located near Owl's Head Park~</p>
<a href="https://www.facebook.com/" class="fab fa-facebook">@cookiesnbytes</a>
</div>
<div class="hours">
<h3>Our Hours Of Operation:</h3>
<p>✧ Monday - Friday: 8:00 AM - 6:00 PM</p>
<p>✧ Saturday - Sunday: 9:00 AM - 5:00 PM</p>
<p>✧ Holidays: Closed</p>
</div>
</div>
</footer>
</body>
</html>