-
Notifications
You must be signed in to change notification settings - Fork 0
/
monthcourses.html
120 lines (115 loc) · 4.45 KB
/
monthcourses.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
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="styles.css" rel="stylesheet"type="text/css" />
</head>
<body>
<div id="wrapper">
<Header>
<img
src="_images/logo.png"
alt="logo"/>
<nav id="topLinks">
<ul>
<!--navigation links at the top of the page-->
<li><a href="index.html">Home</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="weekcourse.html">Six-Week Courses</a></li>
<li class="currentPage"> Six-Month Courses</li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="checkout.html">Checkout</a></li>
</ul>
</nav>
</Header>
<hr/>
<main id="Weekpage">
<h1>Six-Month Courses</h1>
<div class="row">
<div class="column3">
<div class="content">
<img src="_images/firstaid.png" alt="FirstAid" style="width:50%">
<h3>FirstAid</h3>
<p>To provide first aid awareness and basic life support
</p>
<p>
Content:
Wounds and bleeding
Burns and fractures
Emergency scene management
Cardio-Pulmonary Resuscitation (CPR)
Respiratory distress e.g., Choking, blocked airway
</p>
</div>
</div>
<div class="column3">
<div class="content">
<img src="_images/sewing.png" alt="Sewing" style="width:50%">
<h3>Sewing</h3>
<p> Purpose: To provide alterations and new garment tailoring services
</p>
<p>
Content:
Types of stitches
Threading a sewing machine,
Sewing buttons, zips, hems and seams
Alterations
Designing and sewing new garments
</p>
</div>
</div>
<div class="column3">
<div class="content">
<img src="_images/landscaping.png" alt="Landscaping" style="width: 50%">
<h3>Landscaping</h3>
<p>
Purpose: To provide landscaping services for new and established gardens.
</p>
<p>
Content:
Indigenous and exotic plants and trees
Fixed structures (fountains, statues, benches, tables, built-in braai)
Balancing of plants and trees in a garden
Aesthetics of plant shapes and colours
Garden layout
</p>
</div>
</div>
<div class="column3">
<div class="content">
<img src="_images/lifeskills.png" alt="LifeSkills" style="width:50%">
<h3>Life Skills</h3>
<p>Purpose: To provide skills to navigate basic life necessities</p>
<p>
Content:
Opening a bank account
Basic labour law (know your rights)
Basic reading and writing literacy
Basic numeric literacy
</p>
</div>
</div>
</div>
<!-- END MAIN -->
</div>
</main>
<footer>
<nav id="bottomLinks">
<!--navigation links at the botton of the page-->
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="weekcourse.html">Six-Week Courses</a></li>
<li class="currentPage">Six-monthCourses</li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="checkout.html">Checkout</a></li>
</ul>
</nav>
<p>
© Empowering the nation | Powered by "Introverts" Web Hosting
</p>
</footer>
</body>
</html>