-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBCAcontent.php
113 lines (98 loc) · 3.84 KB
/
BCAcontent.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
<!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>Explorer-RSMT</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,700;0,800;1,800&family=Poppins:wght@100;200;400;500;700;900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
</head>
<body>
<div id="preloader"></div>
<section class="sub-header">
<?php
session_start();
if(isset($_SESSION['std_name']))
include('header.php'); else{ ?>
<nav>
<a href="index.php"><img src="icons\new-explorer.png" alt="#"></a>
<!-- <div class="nav-links" id="navlinks">
<i class="fa-solid fa-xmark" onclick="hidemenu()"></i>
<ul>
<li><a href="index.php" class="active">Home</a></li>
<li><a href="about.php">About</a></li>
<li><a href="courses.php">Courses</a></li>
<li><a href="contact.php">Contact</a></li>
</ul>
</div> -->
<i class="fa-solid fa-bars" onclick="showmenu()"></i>
</nav>
<?php } ?>
<div class="text-box">
<h1>For BCA Students
</h1>
</div>
</section>
<!-- About us content -->
<section class="about-us">
<div class="row">
<div class="about-col">
<h1>Check your Syllabus</h1>
<p>First Year Syllabus from ACTU Official Site --</p>
<iframe id="pdffiles" src="Pdf files/Syllabus.pdf" frameborder="0"></iframe>
<a href="Pdf files/Syllabus.pdf" download class="hero-btn red-btn">Download</a>
<p>Second Year Syllabus from ACTU Official Site --</p>
<iframe id="pdffiles" src="Pdf files/Syllabus2.pdf" frameborder="0"></iframe>
<a href="Pdf files/Syllabus2.pdf" download class="hero-btn red-btn">Download</a>
<p>Third Year Syllabus from ACTU Official Site --</p>
<iframe id="pdffiles" src="Pdf files/Syllabus2.pdf" frameborder="0"></iframe>
<a href="Pdf files/Syllabus2.pdf" download class="hero-btn red-btn">Download</a>
</div>
<div class="about-col">
<img src="image/about.jpg" alt="">
</div>
</section>
<section>
<div id="paper">
<div class="style">
<h2>Previous Year Paper for second semester students</h2>
</div>
<h3>Subject -- Automata Theory</h3>
<p>Paper1</p>
<a href="Pdf files/Automata.pdf" download class="hero-btn red-btn">Download</a>
<p>Paper2</p>
<a href="Pdf files/Automata (2).pdf" download class="hero-btn red-btn">Download</a>
<p>Paper3</p>
<a href="Pdf files/Automata (3).pdf" download class="hero-btn red-btn">Download</a>
<p>Paper4</p>
<a href="Pdf files/Automata (4).pdf" download class="hero-btn red-btn">Download</a>
<p>Paper5</p>
<a href="Pdf files/Automata (5).pdf" download class="hero-btn red-btn">Download</a>
</div>
</section>
<!-- Footer -->
<?php include("footer.php"); ?>
<!-- Javascript -->
<script>
var navlinks = document.getElementById("navlinks");
function showmenu() {
navlinks.style.right = "0";
}
function hidemenu() {
navlinks.style.right = "-200px";
}
</script>
<script>
var loader = document.getElementById("preloader");
window.addEventListener("load", function(){
loader.style.display = "none";
})
</script>
</body>
</html>