-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourses.html
More file actions
132 lines (126 loc) · 5.92 KB
/
courses.html
File metadata and controls
132 lines (126 loc) · 5.92 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<!-- meta tags for responsivness and browser compatiblity -->
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, intial-scale=1.0" />
<title>Courses</title>
<!-- main css file for the styling -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="icon" href="img/favicon.png">
</head>
<body>
<!-- I have created two navbars, one for mobile which is the default and one for larger screen sizes -->
<div class="nav-bar1">
<div class="nav-bar1-menu">
<div class="nav-bar1-button" onclick="showContent()"></div>
<div id="my-navbar" class="nav-bar1-content">
<a href="index.html">HOME</a>
<a href="about.html">ABOUT</a>
<a href="courses.html">COURSES</a>
<a href="contact.html">CONTACT</a>
</div>
</div>
</div>
<nav class="nav-bar2">
<ul class="nav-bar2">
<li>
<a href="index.html">HOME</a>
</li>
<li>
<a href="about.html">ABOUT</a>
</li>
<li>
<a href="courses.html">COURSES</a>
</li>
<li>
<a href="contact.html">CONTACT</a>
</li>
</ul>
</nav>
<!-- back to top button used to send the user back to the top of the page -->
<div class="to-top">
<a href="#" onclick="return false;" onmousedown="resetScroller('showcase');">
<img src="img/toTop3.png" alt="">
</a>
</div>
<!-- showcase starts here -->
<!-- slideshow content starts here -->
<section id ="home-section" class="slideShow">
<header id="showcase" class="grid">
<div class="content-wrap">
<h1>Courses</h1>
<h2>Our last session sold out fast. Reserve your seat TODAY!</h2>
<a onclick="initScroll('courses-section-a'); return false;" href="#" class="btn">Learn More</a>
</div>
</header>
<!-- I have used layers to help me with the slideshow -->
<div class="layer1"></div>
<div class="layer2"></div>
<div class="layer3"></div>
<div class="layer4"></div>
<div class="layer5"></div>
</section>
<main id="main">
<!-- section a starts here -->
<!-- description of courses here -->
<section id="courses-section-a" class="grid">
<div class="content-wrap">
<div class="courses">
<div class="container">
<h2 class="content-title">GDPR Seminar</h2>
<img src="img/courses1.jpeg" alt="">
</div>
<div class ="courses-text">
<p>The EU General Data Protection Regulation (EU GDPR) is new legislation that provides a single, data privacy law for the European Union.
The EU GDPR aims to prevent the loss of personal data by improving data security for all individuals living in EU member states.</p>
<p>UK organisations have until May 2018 to comply with the new law, or potentially face fines of up to 4% of annual turnover or €20 million.
This two-day introductory course, delivered by a data protection specialist,
provides an introduction into the compliance of the new EU Data Protection regulations.
Gain understanding of the requirements and how that impacts you and your organisation.</p>
</div>
<div class="container">
<h2 class="content-title">Financial Crime - AML/KYC</h2>
<img src="img/courses2.jpeg" alt="">
</div>
<div class ="courses-text">
<p>The Seminar is open to anyone who is interested in pursuing a career in Financial Crime – AML/KYC.
However, the content of the programme requires students to possess; Sound educational background, Good written English skills</p>
<p>The online assessment is taken on completion of the training material. You will be asked 20 multiple choice questions with a pass mark of 75%.</p>
<p>The answers are marked automatically so you will instantly know whether you have passed.
If you don’t pass don’t worry! You can take the test as many times as you need with no extra charge.</p>
</div>
<div class="container">
<h2 class="content-title">Business Analysis Training</h2>
<img src="img/courses3.jpeg" alt="">
</div>
<div class ="courses-text">
<p>This two-day course can be taken as a one-off training course. This course is particularly useful for those who want to develop their skills in
applying Business Analysis strategy. The primary advantage of obtaining this prestigious qualification is that it allows certification holders to expand their career opportunities.</p>
<p>After completing this training course, it is expected that delegates will be able to:
<br>
Use strategic analysis techniques
<br>
Understand the techniques required to investigate the business systems of an organisation
<br>
Use a stakeholder analysis technique.
</p>
</div>
</div>
</div>
</section>
</main>
<!-- footer of the page is here -->
<footer id="main-footer" class="grid">
<div>Copyright © 2017 Learning Academy</div>
<div>Sitemap Create:
<a href="https://rameezsajid.github.io/CTEC3905_P15224656/sitemap.xml" target="_blank">Click For Sitemap</a>
</div>
</footer>
<!-- two scripts used, one is used for giving a scrolling effect when clicking on a link in the buttons -->
<!-- and the other is used for showing and hiding content in navbar1 -->
<script src="js/script.js"></script>
<script src="js/scroll.js"></script>
</body>
</html>