-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathallSubjectPage.php
100 lines (94 loc) · 4.13 KB
/
allSubjectPage.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
<body>
<?php include 'components/head.php'; ?>
<?php include 'components/navBar.php'; ?>
<?php include 'components/loginForm.php'; ?>
<!-- all subject page title -->
<div class="container">
<div class="mb-5 mt-5 d-flex justify-content-start title-bg">
<div class="p-2 bg-shadow rounded">
<a href="index.php">
<img src="images/home-button.png" alt="home icon" width="40px">
</a>
</div>
<div class="p-2 bg-shadow rounded fs-3 flex-fill">
<span class="ms-4">HNDIT Past Papers</span>
</div>
</div>
<!-- number of year -->
<div class="mb-4 d-flex justify-content-center fw-bold gap-5">
<div class="p-2 fs-5 title-bg bg-shadow rounded">
<a href="#"> 1st YEAR </a>
</div>
<div class="p-2 fs-5 title-bg bg-shadow rounded">
<a href="#"> 2nd YEAR </a>
</div>
</div>
<!-- all paper name section -->
<section class="all-paper-bg text-center">
<h5 class="text-decoration-underline underline-space mb-4">1st Semester Subjects</h5>
<table class="table w-50 mx-auto">
<tr>
<td class="col-1">1. </td>
<td class="col-7">Enterprise Architecture</td>
<td class="col-2"> HNDIT4232 </td>
<td class="col-2">
<a class="btn btn-primary btn-sm" href="oneSubjectPage.php">View</a>
</td>
</tr>
<tr>
<td class="col-1">2. </td>
<td class="col-7">IT Project Management</td>
<td class="col-2"> HNDIT4032 </td>
<td class="col-2">
<a class="btn btn-primary btn-sm" href="oneSubjectPage.php">View</a>
</td>
</tr>
<tr>
<td class="col-1">3. </td>
<td class="col-7">Machine Learning</td>
<td class="col-2"> HNDIT4212 </td>
<td class="col-2">
<a class="btn btn-primary btn-sm" href="oneSubjectPage.php">View</a>
</td>
</tr>
<tr>
<td class="col-1">4. </td>
<td class="col-7">Software Quality Assurance</td>
<td class="col-2"> HNDIT4022 </td>
<td class="col-2">
<a class="btn btn-primary btn-sm" href="oneSubjectPage.php">View</a>
</td>
</tr>
<tr>
<td class="col-1">5. </td>
<td class="col-7">Software Engineering</td>
<td class="col-2"> HNDIT4042 </td>
<td class="col-2">
<a class="btn btn-primary btn-sm" href="oneSubjectPage.php">View</a>
</td>
</tr>
</table>
<!-- 2nd semester -->
<h5 class="text-decoration-underline underline-space mt-5 mb-3">2nd Semester Subjects</h5>
<table class="table w-50 mx-auto">
<tr>
<td class="col-1">1. </td>
<td class="col-7">Software Quality Assurance</td>
<td class="col-2"> HNDIT4232 </td>
<td class="col-2">
<a class="btn btn-primary btn-sm" href="oneSubjectPage.php">View</a>
</td>
</tr>
<tr>
<td class="col-1">2. </td>
<td class="col-7">IT Project Management</td>
<td class="col-2"> HNDIT4032 </td>
<td class="col-2">
<a class="btn btn-primary btn-sm" href="oneSubjectPage.php">View</a>
</td>
</table>
</section>
</div>
<?php include 'components/footer.php'; ?>
</body>
</html>