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>Services - Christie and Chris's Cooking Cabin</title>
<style>
body {
font-family: Tahoma, Arial, sans-serif;
color: #1D7874; /* Myrtle Green */
background-color: #F4C095; /* Peach Crayola */
}
h1, h2 {
font-family: 'Arial Black', Arial, sans-serif;
color: #071E22; /* Dark Jungle Green */
}
.highlight {
color: #EE2E31; /* Red Pigment */
}
.contact-link, .download-link {
color: #679289; /* Wintergreen Dream */
text-decoration: none;
}
.italic {
font-style: italic;
}
.underline {
text-decoration: underline;
}
footer {
font-size: 0.8em;
}
/* Additional styling */
</style>
<script>
function updateLastModified() {
document.getElementById('lastModified').textContent = document.lastModified;
}
</script>
</head>
<body onload="updateLastModified()">
<header>
<h1>Welcome to Our Services</h1>
</header>
<section id="cooking-classes">
<h2>Cooking Classes</h2>
<p>Embark on a <span class="italic">gastronomic journey</span> with our expert-led cooking classes for all levels.</p>
<ul>
<li><strong class="highlight">Beginner's Baking:</strong> A sweet introduction to the art of baking.</li>
<li><strong class="highlight">Global Gourmet:</strong> Explore international cuisines in our interactive sessions.</li>
</ul>
<p>To see the full schedule, you can download the <a href="schedule.pdf" class="download-link" download="Weekly_Cooking_Classes_Schedule.pdf">weekly cooking courses schedule</a>.</p>
<p>If you need help registering for any of our services, please contact <a href="mailto:yuminkim@company.com" class="contact-link">yuminkim@company.com</a>.</p>
</section>
<!-- Culinary Competitions Section -->
<section id="culinary-competitions">
<h2>Culinary Competitions</h2>
<p>Join our <span class="highlight">Culinary Competitions</span> to showcase your cooking skills and win exciting prizes.</p>
<!-- Insert image for culinary competitions -->
<a href="competitions.html" class="contact-link">Enter the competition</a>
</section>
<!-- Seasonal Workshops Section -->
<section id="seasonal-workshops">
<h2>Seasonal Workshops</h2>
<p>Our <span class="underline">Seasonal Workshops</span> focus on dishes that celebrate the flavors of the current season and festive holidays.</p>
<!-- Insert image for seasonal workshops -->
<a href="workshops.html" class="contact-link">View seasonal workshops</a>
</section>
<!-- Nutrition and Diet Planning Section -->
<section id="diet-planning">
<h2>Nutrition and Diet Planning</h2>
<p>Our tailored nutrition plans and cooking classes focus on special diets and healthy eating, helping you to cook meals that are as nutritious as they are delicious.</p>
<!-- Insert image for diet planning -->
<a href="nutrition-guide.pdf" class="download-link" download="Nutrition_and_Diet_Planning.pdf">Download our Nutrition Guide</a>
</section>
<!-- Kids and Teens Cooking Camps Section -->
<section id="cooking-camps">
<h2>Kids and Teens Cooking Camps</h2>
<p>Our cooking camps for <span class="italic">Kids and Teens</span> are fun, educational, and designed to inspire young chefs.</p>
<!-- Insert image for cooking camps -->
<a href="cooking-camps.html" class="contact-link">Sign up for cooking camps</a>
</section>
<section id="online-tutorials" class="highlight">
<h2>Online Cooking Tutorials</h2>
<p>Can't join us in person? Our online tutorials bring our kitchen to yours, with step-by-step instructions to craft delicious dishes at your own pace.</p>
<!-- Insert image related to online tutorials -->
<a href="download/tutorial.pdf" download>Download our Free Recipe Guide</a>
</section>
<footer>
<p class="underline">Last Modified: <span id="lastModified"></span></p>
</footer>
</body>
</html>