-
Notifications
You must be signed in to change notification settings - Fork 0
/
faqs.php
143 lines (115 loc) · 5.41 KB
/
faqs.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SHS Academic Track Recommender System</title>
<link rel="shortcut icon" type="image/x-icon" href="images/SaTRSlogo.png" />
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="css/faqs.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- header section starts -->
<header class="header">
<div id="menu-btn" class="fas fa-bars"></div>
<a href="home.php" class="logo">
<img src="images/SaTRSnav1.png" style="width: 20%">
<style>
@media(max-width:768px){
.header .logo img{
display: none;
}
}
</style>
</a>
<nav class="navbar">
<a href="home.php">HOME</a>
<a href="about.php">ABOUT</a>
<a href="tracks.php">STRANDS</a>
<a href="newinterest.php">ASSESSMENT</a>
<a href="faqs.php">FAQS</a>
</nav>
<!--<a href="index.html" class="logo" style="margin-right: 10%;"><i class="fas fa-shopping-cart"></i></a> -->
</header>
<!-- header section ends -->
<!-- faqs section starts -->
<section class="faqs" id="faqs">
<div class="row">
<div class="column">
<div class="accordion">
<div class="image-box">
<img src="images/FAQS.png" alt="">
</div>
</div>
</div>
<div class="column">
<div class="accordion-item">
<div class="accordion-item-header">
What is Senior High School?
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
In 2011, the Department of Education has made the historic implementation
of shifting from the 10-year basic education curriculum to the Kinder to 12 Program (K-12) in phases.
<br><br>Senior High School (SHS) is the last two years of the K to 12 program that includes Grades 11 and 12.
</div>
</div>
</div>
<div class="accordion-item">
<div class="accordion-item-header">
Does this mean I will spend two more years in High School?
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
Yes. But these two additional years will equip you with skills that
will better prepare you for the future, whether it be; Kolehiyo, Trabaho or Negosyo!
</div>
</div>
</div>
<div class="accordion-item">
<div class="accordion-item-header">
Will Senior High School ensure my employment?
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
Senior High Schools does not guarantee employment but it does open up a lot of opportunities for you like:
<br><br> ● Apply to TESDA Certificate of Competency (COCs) and National Certificates (NCs) for better work opportunities.
<br> ● You will take entrepreneurship courses to equip you with basic business management knowledge and skills should you choose to go into business after Senior High.
<br> ● Partnerships with different companies are also offered for technical and vocational courses.
<br> ● Further your education by going into college. The subjects you take in SHS will help you a lot in college too.
</div>
</div>
</div>
<!-- <div class="accordion-item">
<div class="accordion-item-header">
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
Yes, but cancelling of order only takes 10 minutes after checking out.
</div>
</div>
</div>
<div class="accordion-item">
<div class="accordion-item-header">
</div>
<div class="accordion-item-body">
<div class="accordion-item-body-content">
Yes, Kie's Snacks have delivery. The standard rate fee is 40 pesos for those who's around SJDM, Bulacan.
</div>
</div>
</div> -->
</div>
</div>
</section>
<!-- faqs section ends -->
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<!-- custom js file link -->
<script src="js/faqs-accordion.js"></script>
<script src="js/menu.js"></script>
</body>
</html>