-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsix_week_courses.html
76 lines (70 loc) · 2.79 KB
/
six_week_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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="logo2.ico" type="image/x-icon">
<title>Six Week Courses</title>
<link rel="stylesheet" href="courses.css">
</head>
<body>
<header>
<div class="logo-container">
<img src="logo2.ico" alt="Logo">
<em>Where Ambition Meets Success!</em>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="six_month_courses.html">Six Month Courses</a></li>
<li><a href = "calculate_fees.html">Invoice</a></li>
</ul>
</nav>
</header>
<section id="courses">
<h2>Our Six Week Courses</h2>
<div class="course-list">
<div class="course">
<h3>Child Minding</h3>
<img src="child.png" alt="Child Mining">
<p>Fees: R750</p>
<p>Purpose: To provide basic child and baby care</p>
<p>Content:</p>
<ul>
<li>Birth to six-month old baby needs</li>
<li>Seven-month to one year old needs</li>
<li>Toddler needs</li>
<li>Educational toys</li>
</ul>
</div>
<div class="course">
<h3>Cooking</h3>
<img src="cook.png" alt="Cooking">
<p>Fees: R750</p>
<p>Purpose: To prepare and cook nutritious family meals</p>
<p>Content:</p>
<ul>
<li>Nutritional requirements for a healthy body</li>
<li>Types of protein, carbohydrates, and vegetables</li>
<li>Planning meals</li>
<li>Preparation and cooking of meals</li>
</ul>
</div>
<div class="course">
<h3>Garden Maintenance</h3>
<img src="garden.png" alt="Garden Maintenance">
<p>Fees: R750</p>
<p>Purpose: To provide basic knowledge of watering, pruning, and planting in a domestic garden</p>
<p>Content:</p>
<ul>
<li>Water restrictions and the watering requirements of indigenous and exotic plants</li>
<li>Pruning and propagation of plants</li>
<li>Planting techniques for different plant types</li>
</ul>
</div>
</div>
</section>
<footer>
<p>© KOV 2024. All rights reserved.</p>
</footer>
</body>
</html>