-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
85 lines (76 loc) · 3.19 KB
/
index.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
<body>
<?php include 'components/head.php'; ?>
<?php include 'components/navBar.php'; ?>
<?php include 'components/loginForm.php'; ?>
<?php include 'connection/dbConnection.php'; ?>
<!-- main image -->
<div class="container mb-4 mt-4">
<img src="images/main2.jpg" class="img-fluid mx-auto d-block img-thumbnail" alt="main image" width="800px">
</div>
<div class="container text-center">
<!-- home details section -->
<section class="mb-3">
<h3>About</h3>
<p>Here you can get all HND Past Papers, Model Papers and Answer Sheets of SLIATE.</p>
</section>
<!-- cose category section -->
<div class="row fw-bold">
<div class="col-12 col-sm-6 col-md-4 col-lg-2 mb-4">
<a href="allSubjectPage.php">
<div class="cose-category-bg">
<img src="images/paper.png" alt="icon" width="40px" class="mb-4">
<br>
HNDIT
</div>
</a>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-2 mb-4">
<a href="allSubjectPage.php">
<div class="cose-category-bg">
<img src="images/paper.png" alt="icon" width="40px" class="mb-4">
<br>
HNDA
</div>
</a>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-2 mb-4">
<a href="allSubjectPage.php">
<div class="cose-category-bg">
<img src="images/paper.png" alt="icon" width="40px" class="mb-4">
<br>
HNDE
</div>
</a>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-2 mb-4">
<a href="allSubjectPage.php">
<div class="cose-category-bg">
<img src="images/paper.png" alt="icon" width="40px" class="mb-4">
<br>
HNDM
</div>
</a>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-2 mb-4">
<a href="allSubjectPage.php">
<div class="cose-category-bg">
<img src="images/paper.png" alt="icon" width="40px" class="mb-4">
<br>
HNDTHM
</div>
</a>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-2 mb-4">
<a href="allSubjectPage.php">
<div class="cose-category-bg">
<img src="images/paper.png" alt="icon" width="40px" class="mb-4">
<br>
HNDBA
</div>
</a>
</div>
</div>
</div>
<?php include 'components/footer.php'; ?>
</body>
</html>