-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewnotes.php
103 lines (94 loc) · 4.09 KB
/
viewnotes.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
<!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>Reach Me</title>
<link href="assets/img/s_icon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Roboto:100,300,400,500,700|Philosopher:400,400i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<!-- Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body style="background-color: rgb(233, 229, 229);">
<header id="header" class="header fixed-top d-flex align-items-center" style="padding:0px">
<div class="container d-flex align-items-center justify-content-between">
<div id="logo" style="padding:20px">
<h1><a href="#"><span>Reach</span> Me</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.php"><img src="assets/img/logo.png" alt="" title="" /></a>-->
</div>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link active" href="student.php" style="text-decoration: none;">Home</a></li>
<li><a class="nav-link" href="examdate.php" style="text-decoration: none;">Exam Date</a></li>
<li class="dropdown"><a href="#" style="text-decoration: none;"><span>Time table</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="examtimetable.php" style="text-decoration: none;">Exam timetable</a></li>
<li><a href="classtimetable.php" style="text-decoration: none;">Class timetable</a></li>
</ul>
</li>
<li><a class="nav-link" href="notification.php" style="text-decoration: none;">Notifications</a></li>
<li><a class="nav-link" href="notes.php" style="text-decoration: none;">Notes</a></li>
<li><a href="logout.php" style="text-decoration: none;">Logout</a></li>
</ul>
</nav><!-- .navbar -->
</div>
</header>
<br><br><br><br>
<div style="margin: 30px;">
<div class="container" style="border: 1px solid;border-color: rgb(233, 229, 229); background-color: white;padding: 0;">
<h1 style="text-align: center; font-family: Roboto, sans-serif;color:rgb(255, 252, 252);background-color: rgb(101, 189, 227);">MCA</h1>
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col" class="col-lg-3">Subject</th>
<th scope="col" class="col-lg-4">Unit</th>
<th scope="col">Download</th>
</tr>
</thead>
<tbody>
<tr>
<td>OS</td>
<td> <select class="form-control">
<option value="">Select Unit</option>
<option>Unit 1</option>
<option>Unit 2</option></td>
<td><a href="#" class="btn btn-success">Download</a></td>
</tr>
<tr>
<td>AWT</td>
<td> <select class="form-control">
<option value="">Select Unit</option>
<option>Unit 1</option>
<option>Unit 2</option></td>
<td><a href="#" class="btn btn-success">Download</a></td>
</tr>
<tr>
<td>JAVA</td>
<td> <select class="form-control">
<option value="">Select Unit</option>
<option>Unit 1</option>
<option>Unit 2</option></td>
<td><a href="#" class="btn btn-success">Download</a></td>
</tr>
</tbody>
</table>
<a onclick="window.history.back()" class="btn btn-danger" style="margin-left: 550px;">Back</a><br><br>
</div>
</div>
<br><br>
<!--Footer-->
<div class="footer-basic">
<footer>
<p class="copyright" style="color: rgb(99, 98, 98);">[email protected]</p>
<p class="copyright" style="color: rgb(99, 98, 98);">Adithya © 2022</p>
</footer>
</div>
</body>
</html>