-
Notifications
You must be signed in to change notification settings - Fork 0
/
course.html
308 lines (272 loc) · 8.24 KB
/
course.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Course Offered</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</head>
<body style="background-image: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('background.png'); background-size: cover; background-attachment: fixed;">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: url('background.png') no-repeat center center fixed;
background-size: cover;
color: #333;
}
.container{
height: 40px;
width: co
}
/* Menu Icon */
.menu-icon {
position: fixed;
top: 20px;
right: 20px;
font-size: 32px;
color: #fff;
cursor: pointer;
z-index: 1000;
}
/* Navigation Links */
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
position: fixed;
top: 70px;
right: 20px;
background: rgba(0, 121, 242, 0.9);
border-radius: 8px;
padding: 10px;
opacity: 0;
transform: scale(0);
transition: opacity 0.3s, transform 0.3s;
z-index: 999;
}
nav ul li {
margin: 10px 0;
}
nav ul li a {
color: white;
font-size: 24px;
text-decoration: none;
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
transition: background 0.3s;
}
nav ul li a:hover {
background: rgba(255, 255, 255, 0.4);
}
/* Hidden Navigation */
.hidden {
opacity: 0;
pointer-events: none;
transform: scale(0);
}
/* Visible Navigation */
.visible {
opacity: 1;
pointer-events: all;
transform: scale(1);
}
.details{
text-align: left;
}
/* Course Section */
.courses {
text-align: center;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 40px 20px;
}
span img{
height: 100px;
}
.course {
background-color: rgba(255, 255, 255, 0.9);
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 30%;
margin: 10px;
padding: 20px;
transition: transform 0.3s;
}
.course h2 {
font-size: 22px;
color: #2c3e50;
}
.course p {
font-size: 16px;
line-height: 1.5;
color: #7f8c8d;
}
.course ul {
list-style: none;
padding: 0;
margin-top: 15px;
}
.course ul li {
font-size: 14px;
color: #34495e;
}
.course:hover {
transform: translateY(-10px);
}
/* Footer */
footer {
color: white;
text-align: center;
padding: 20px 0;
}
footer p {
margin: 0;
font-size: 14px;
}
/* Responsive Layout */
@media screen and (max-width: 992px) {
.course {
width: 45%;
}
}
@media screen and (max-width: 768px) {
.course {
width: 100%;
}
.navbar-collapse {
text-align: center;
}
.navbar-nav {
margin-top: 10px;
}
}
@media screen and (max-width: 480px) {
header .logo h1 {
font-size: 20px;
}
.course h2 {
font-size: 20px;
}
.course p {
font-size: 14px;
}
.course ul li {
font-size: 12px;
}
}
</style>
<!-- NavBarMenu-->
<header>
<nav>
<div class="menu-icon" id="menuIcon">
<i class="fas fa-bars"></i> <!-- Menu icon -->
</div>
<ul id="navLinks" class="hidden">
<li><a href="index.html" title="Home"><i class="fas fa-home"></i></a></li>
<li><a href="course.html" title="Courses"><i class="fas fa-book"></i></a></li>
<li><a href="contactUs.html" title="Contact"><i class="fas fa-envelope"></i></a></li>
<li><a href="aboutUs.html" title="About"><i class="fas fa-info-circle"></i></a></li>
</ul>
</nav>
</header>
<!-- Course Section -->
<section class="courses">
<div class="course" id="BSBA">
<span><img src="B.A.webp" alt=""></span>
<h2>BS Business Administration (BSBA)</h2>
<p>This program focuses on developing skills in business management, strategy, and leadership to help students excel in the corporate world.</p>
<div class="details">
<ul>
<li>Core Subjects: Marketing, Financial Management, Organizational Behavior</li>
<li>Duration of Learning: 4 Years</li>
<li>Career Opportunities: Manager, Business Consultant, Entrepreneur</li>
</ul>
</div>
</div>
<div class="course" id="BSIT">
<span><img src="I.T.webp" alt=""></span>
<h2>BS Information Technology (BSIT)</h2>
<p>BSIT is designed to train students in various aspects of information technology, from software development to network management.</p>
<div class="details">
<ul>
<li>Core Subjects: Programming, Database Management, Networking</li>
<li>Duration of Learning: 4 Years</li>
<li>Career Opportunities: IT Specialist, Web Developer, Network Administrator</li>
</ul>
</div>
</div>
<div class="course" id="BSCRIM">
<span><img src="BCRIM.webp" alt=""></span>
<h2>BS Criminology (BSCRIM)</h2>
<p>This course aims to equip students with knowledge on criminal law, forensic science, and crime prevention methods.</p>
<div class="details">
<ul>
<li>Core Subjects: Criminal Law, Forensic Psychology, Crime Scene Investigation</li>
<li>Duration of Learning: 4 Years</li>
<li>Career Opportunities: Police Officer, Forensic Analyst, Criminal Investigator</li>
</ul>
</div>
</div>
<div class="course" id="BSHM">
<span><img src="H.M.webp" alt=""></span>
<h2>BS Hospitality Management (BSHM)</h2>
<p>The BSHM program prepares students to manage and operate businesses in the hospitality and tourism industry.</p>
<div class="details">
<ul>
<li>Core Subjects: Hotel Operations, Event Management, Tourism Planning</li>
<li>Duration of Learning: 4 Years</li>
<li>Career Opportunities: Hotel Manager, Event Planner, Tourism Coordinator</li>
</ul>
</div>
</div>
<div class="course" id="BSED">
<span><img src="B.E.webp" alt=""></span>
<h2>BS Education (BSED)</h2>
<p>The BSED program is designed for those aspiring to be effective educators, with a focus on curriculum development and teaching strategies.</p>
<div class="details">
<ul>
<li>Core Subjects: Educational Psychology, Curriculum Design, Classroom Management</li>
<li>Duration of Learning: 4 Years</li>
<li>Career Opportunities: Teacher, Education Coordinator, School Administrator</li>
</ul>
</div>
</div>
<div class="course" id="BEED">
<span><img src="B.E.webp" alt=""></span>
<h2>BEED (Bachelor of Elementary Education)</h2>
<p>BEED focuses on preparing students to become competent elementary school teachers, with an emphasis on child development and teaching methodologies.</p>
<div class="details">
<ul>
<li>Core Subjects: Child Development, Educational Technology, Teaching Methods</li>
<li>Duration of Learning: 4 Years</li>
<li>Career Opportunities: Elementary Teacher, Education Specialist, School Counselor</li>
</ul>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2024 HGBaquiran College. All Rights Reserved.</p>
</footer>
</body>
<script>
const menuIcon = document.getElementById('menuIcon');
const navLinks = document.getElementById('navLinks');
menuIcon.addEventListener('click', () => {
// Toggle visibility
navLinks.classList.toggle('hidden');
navLinks.classList.toggle('visible');
});
</script>
</html>