-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourses.html
118 lines (113 loc) · 4.73 KB
/
courses.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coffee Brew - Courses</title>
<link rel="stylesheet" href="styles/global.css"/>
<link rel="stylesheet" href="styles/courses.css"/>
</head>
<body>
<!-- Header Section -->
<header class="courses-nav-bar">
<div class="nav-bar-title">
<img src="img/Icon coffee.png" alt="Coffee Brew Logo" class="logo">
Coffee Brew
</div>
<nav class="navigation">
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h1>Explore Our Coffee Workshops</h1>
<p>Learn the art of coffee brewing from experienced baristas and enhance your skills. Discover a variety of courses tailored to all levels.</p>
</div>
</section>
<!-- Courses Section -->
<main class="available-courses">
<h2>Available Courses</h2>
<div class="courses-grid">
<div class="course-card">
<h3>Mastering Espresso</h3>
<p>
<strong>Instructor:</strong> John Brewster</p>
<p>
<strong>Schedule:</strong> Mondays and Wednesdays</p>
<p>
<strong>Time:</strong> 10 AM – 12 PM</p>
<p>
<strong>Price: </strong> $120</p>
<p class="course-description">
Learn the secrets to crafting the perfect espresso. This course covers everything from bean selection to tamping and extraction techniques. Ideal for beginners and coffee enthusiasts alike!
</p>
<a href="#" class="btn btn-enroll">Enroll Now</a>
</div>
<div class="course-card">
<h3>Latte Art for Beginners</h3>
<p>
<strong>Instructor:</strong> Emma Froth</p>
<p>
<strong>Schedule:</strong> Saturdays</p>
<p>
<strong>Time:</strong> 2 PM – 4 PM</p>
<p>
<strong>Price: </strong> $90</p>
<p class="course-description">
Unleash your creativity with latte art! Learn how to pour hearts, tulips, and rosettas while mastering milk steaming and microfoam techniques. Perfect for aspiring baristas or home brewers.
</p>
<a href="#" class="btn btn-enroll">Enroll Now</a>
</div>
<div class="course-card">
<h3>Coffee Brewing Techniques</h3>
<p>
<strong>Instructor:</strong> Lisa Beans</p>
<p>
<strong>Schedule:</strong> Tuesdays and Thursdays</p>
<p>
<strong>Time:</strong> 5 PM – 7 PM</p>
<p>
<strong>Price: </strong> $150</p>
<p class="course-description">
Discover various brewing methods, including pour-over, French press, and Aeropress. This hands-on class focuses on grind size, water temperature, and achieving the perfect brew.
</p>
<a href="#" class="btn btn-enroll">Enroll Now</a>
</div>
</div>
</main>
<!-- Footer Section -->
<footer>
<div class="container">
<div class="contact-info">
<span>
<img src="img/email.svg" alt="Email Icon" class="icon">
<a href="mailto:[email protected]">[email protected]</a>
</span>
<span>
<img src="img/phone.svg" alt="Phone Icon" class="icon">
+1 234 567 890
</span>
</div>
<div class="social-media">
<a href="https://facebook.com" target="_blank">
<img src="img/facebook-f.svg" alt="Facebook Icon" class="social-icon">
</a>
<a href="https://instagram.com" target="_blank">
<img src="img/instagram.svg" alt="Instagram Icon" class="social-icon">
</a>
<a href="https://twitter.com" target="_blank">
<img src="img/twitter.svg" alt="Twitter Icon" class="social-icon">
</a>
</div>
<p<span>© 2025 Coffee Brew by Koiree Descoteaux. Your go-to place for coffee workshops and more.</span></p>
</div>
</footer>
</body>
</html>