Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Management Team</title>
<style>
body {
font-family: 'Arial', sans-serif;
font-size: 16px;
color: #071e22;
background-color: #ffffff;
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background-color: #1d7874;
padding: 20px;
text-align: center;
}
h1 {
color: #ffffff;
margin: 0;
}
section {
margin: 20px;
}
h2 {
color: #1d7874;
}
p {
text-align: justify;
}
a {
color: #679289;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul {
list-style: none;
}
footer {
background-color: #f4c095;
padding: 10px;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Our Management Team</h1>
</header>
<section>
<h2>Marisa Weygandt - CEO</h2>
<p>
Marisa Weygandt is the Chief Executive Officer at our company. With a visionary leadership style, she
guides the team towards success.
</p>
<p>Contact Marisa: <a href="mailto:marisa@company.com">marisa@company.com</a></p>
</section>
<section>
<h2>Yim Kumin - Marketing</h2>
<p>
Yim Kumin heads our marketing department, bringing creativity and strategic thinking to our brand
promotion.
</p>
<p>Contact Yim: <a href="mailto:yim@company.com">yim@company.com</a></p>
</section>
<section>
<h2>Chris Pontious - Chef Instructor</h2>
<p>
Chris Pontious, our Chef Instructor, shares his passion for culinary arts and trains the next generation
of chefs.
</p>
<p>Contact Chris: <a href="mailto:chris@company.com">chris@company.com</a></p>
</section>
<section>
<h2>Dhruv Jha - Chef Instructor</h2>
<p>
Dhruv Jha, another valuable Chef Instructor, brings his expertise to our culinary education program,
enriching the learning experience.
</p>
<p>Contact Dhruv: <a href="mailto:dhruv@company.com">dhruv@company.com</a></p>
</section>
<section>
<h2>Francisco Montoya - Operations</h2>
<p>
Francisco Montoya oversees the smooth operations of our company, ensuring efficiency and organization in
every aspect.
</p>
<p>Contact Francisco: <a href="mailto:francisco@company.com">francisco@company.com</a></p>
</section>
<footer>
<p>Last modified: <!-- Use JavaScript to dynamically display the date when the page was modified --></p>
</footer>
</body>
</html>