-
Notifications
You must be signed in to change notification settings - Fork 4
/
regular_courses.php
executable file
·164 lines (134 loc) · 5.26 KB
/
regular_courses.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<!-- Head -->
<head>
<?php include 'includes/head.php'; ?>
<style>
.mylist {
list-style-type: disc;
}
#regular li {
padding: 10px;
}
.list-unstyled {
padding-left: 14px;
}
.mybtn {
background-color: rgb(243, 247, 246);
outline: none;
border: none;
color: black;
margin-top: 15px;
margin-left: 19px;
margin-bottom: 1.5rem;
box-shadow: 0 0 2px 0;
}
.mybtn:hover {
background-color: rgb(181, 184, 183);
}
.mybtn:active
{
background-color: rgb(181, 184, 183);
}
.mybtn:focus {
background-color: rgb(181, 184, 183);
box-shadow: 0 0 0 0.2rem rgba(38, 47, 58, 0.5);
}
.download-arrow {
padding: inherit;
}
.list-arrow {
padding-right: 1rem;
}
</style>
</head>
<body>
<!-- Page Preloder -->
<?php include 'includes/preloader.php'; ?>
<!-- Header -->
<?php include 'includes/header.php'; ?>
<!-- Navbar -->
<?php include 'includes/navbar.php'; ?>
<!-- Side Nav -->
<?php include 'includes/sidenav.php'; ?>
<!-- Breadcrumb section -->
<div class="site-breadcrumb">
<div class="container">
<a href="index.php"><i class="fa fa-home"></i> Home</a> <i class="fa fa-angle-right"></i>
<span>Regular Courses</span>
</div>
</div>
<!-- Breadcrumb section end -->
<!-- About section -->
<section class="about-section spad pt-0">
<div class="container">
<div class="section-title text-center">
<h3>REGULAR COURSES</h3>
<p>Make yourself skillful, the world needs you</p>
</div>
<div class="row">
<div class="container">
<ul class="list-unstyled" id="regular">
<li>
<h4><i class='fas fa-caret-right list-arrow'></i>Diploma</h4>
<div class="container">
<ul class="list-unstyled mylist">
<li>
<h5>Logistics and Supply (Cargo Management)</h5>
<button type="button" class="btn btn-primary btn-block mybtn" onclick="window.open('docs/courses/schemes/DLS(CM) Scheme.pdf')">Scheme<i class='fas fa-arrow-alt-circle-down download-arrow'></i></button>
<button type="button" class="btn btn-primary btn-block mybtn" onclick="window.open('docs/courses/syllabus/DLS(CM) Syllabus.pdf')">Syllabus<i class='fas fa-arrow-alt-circle-down download-arrow'></i></button>
</li>
</ul>
</div>
</li>
<li>
<h4><i class='fas fa-caret-right list-arrow'></i>Bachelor of Vocation</h4>
<div class="container">
<ul class="list-unstyled mylist">
<li>
<h5>Landscape and Design</h5>
<button type="button" class="btn btn-primary btn-block mybtn" onclick="window.open('docs/courses/schemes/LD Scheme.pdf')">Scheme<i class='fas fa-arrow-alt-circle-down download-arrow'></i></button>
<button type="button" class="btn btn-primary btn-block mybtn" onclick="window.open('docs/courses/syllabus/LD Syllabus.pdf')">Syllabus<i class='fas fa-arrow-alt-circle-down download-arrow'></i></button>
</li>
<li>
<h5>Nutrition and Dietetics</h5>
<button type="button" class="btn btn-primary btn-block mybtn" onclick="window.open('docs/courses/schemes/ND Scheme.pdf')">Scheme<i class='fas fa-arrow-alt-circle-down download-arrow'></i></button>
<button type="button" class="btn btn-primary btn-block mybtn" onclick="window.open('docs/courses/syllabus/ND Syllabus.pdf')">Syllabus<i class='fas fa-arrow-alt-circle-down download-arrow'></i></button>
</li>
<li>
<h5>Handicraft</h5>
<button type="button" class="disabled btn btn-primary btn-block mybtn" onclick="window.open('docs/courses/schemes/Handicraft Scheme.pdf')">Scheme<i class='fas fa-arrow-alt-circle-down download-arrow'></i></button>
<button type="button" class="disabled btn btn-primary btn-block mybtn" onclick="window.open('docs/courses/syllabus/Handicraft Syllabus.pdf')">Syllabus<i class='fas fa-arrow-alt-circle-down download-arrow'></i></button>
</li>
</ul>
</div>
</li>
<li>
<h4><i class='fas fa-caret-right list-arrow'></i>Master of Vocation</h4>
<div class="container">
<ul class="list-unstyled mylist">
<li>
<h5>Interior Designing</h5>
<button type="button" class="btn btn-primary btn-block mybtn" onclick="window.open('docs/courses/schemes/ID Scheme.pdf')">Scheme<i class='fas fa-arrow-alt-circle-down download-arrow'></i></button>
<button type="button" class="disabled btn btn-primary btn-block mybtn" onclick="window.open('docs/courses/syllabus/ID Syllabus.pdf')">Syllabus<i class='fas fa-arrow-alt-circle-down download-arrow'></i></button>
</li>
</ul>
</div>
</li>
<li>
<h4><i class='fas fa-caret-right list-arrow'></i>Ph.D.<small class="text-muted small"> (Coming Soon...)</small></h4>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- About section end-->
<!-- Footer section -->
<?php include 'includes/footer.php'; ?>
<!-- Back 2 Top -->
<?php include 'includes/back2Top.php'; ?>
<!--====== Javascripts & Jquery ======-->
<?php include 'includes/javascripts.php'; ?>
</body>
</html>