-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsix_month_courses.html
100 lines (91 loc) · 3.83 KB
/
six_month_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
<!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 Month Courses</title>
<link rel="stylesheet" href="courses.css"> <!-- Link to your CSS file -->
</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_week_courses.html">Six Weeks Courses</a></li>
<li><a href = "calculate_fees.html">Invoice</a></li>
</ul>
</nav>
</header>
<section id="courses">
<h2>Our Six-Month Courses</h2>
<div class="course-list">
<div class="course">
<h3>First Aid</h3>
<img src="First Aid.png" alt = "First Aid Kit">
<p><strong>Fees:</strong> R1500</p>
<p><strong>Purpose:</strong> To provide first aid awareness and basic life support.</p>
<p><strong>Content:</strong></p>
<ul>
<li>Wounds and bleeding</li>
<li>Burns and fractures</li>
<li>Emergency scene management</li>
<li>Cardio-Pulmonary Resuscitation (CPR)</li>
<li>Respiratory distress e.g., Choking, blocked airway</li>
<br>
</ul>
</div>
<div class="course">
<h3>Sewing</h3>
<img src="sewing.png" alt = "sewing">
<p><strong>Fees:</strong> R1500</p>
<p><strong>Purpose:</strong> To provide alterations and new garment tailoring services.</p>
<p><strong>Content:</strong></p>
<ul>
<li>Types of stitches</li>
<li>Threading a sewing machine</li>
<li>Sewing buttons, zips, hems, and seams</li>
<li>Alterations</li>
<li>Designing and sewing new garments</li>
<br>
</ul>
</div>
<div class="course">
<h3>Landscaping</h3>
<img src="landscape.png" alt = "Landscape">
<p><strong>Fees:</strong> R1500</p>
<p><strong>Purpose:</strong> To provide landscaping services for new and established gardens.</p>
<p><strong>Content:</strong></p>
<ul>
<li>Indigenous and exotic plants and trees</li>
<li>Fixed structures (fountains, statues, benches, tables, built-in braai)</li>
<li>Balancing of plants and trees in a garden</li>
<li>Aesthetics of plant shapes and colours</li>
<li>Garden layout</li>
<br>
</ul>
</div>
<div class="course">
<h3>Life Skills</h3>
<img src="life skills.png" alt = "Life Skills">
<p><strong>Fees:</strong> R1500</p>
<p><strong>Purpose:</strong> To provide skills to navigate basic life necessities.</p>
<p><strong>Content:</strong></p>
<ul>
<li>Opening a bank account</li>
<li>Basic labour law (know your rights)</li>
<li>Basic reading and writing literacy</li>
<li>Basic numeric literacy</li>
<br>
</ul>
</div>
</div>
</section>
<footer>
<p>© KOV 2024. All rights reserved.</p>
</footer>
</body>
</html>