-
Notifications
You must be signed in to change notification settings - Fork 0
/
view-attendance.html
112 lines (110 loc) · 4.65 KB
/
view-attendance.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Xtra Blog</title>
<link rel="stylesheet" href="fontawesome/css/all.min.css"> <!-- https://fontawesome.com/ -->
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet"> <!-- https://fonts.google.com/ -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/templatemo-xtra-blog.css" rel="stylesheet">
<link rel="stylesheet" href="attendance.css" >
</head>
<body>
<header class="tm-header" id="tm-header">
<div class="tm-header-wrapper">
<button class="navbar-toggler" type="button" aria-label="Toggle navigation">
<i class="fas fa-bars"></i>
</button>
<div class="tm-site-header">
<img src="img/logo.png" alt="logo" class ="logo img-center">
</div>
<h4 class="student-details">
CB.EN.U4CSE17108
</h4>
<nav class="tm-nav" id="tm-nav">
<ul>
<li class="tm-nav-item"><a href="student-homepage.html" class="tm-nav-link">
<i class="fas fa-home"></i>
Student Home
</a></li>
<li class="tm-nav-item active"><a href="view-attendance.html" class="tm-nav-link">
<i class="fas fa-plus"></i>
View attendance
</a></li>
<li class="tm-nav-item"><a href="requestform.html" class="tm-nav-link">
<i class="fas fa-list"></i>
Request OD
</a></li>
</ul>
</nav>
</div>
</header>
<div>
<div class = "container">
<span class = "labelForTextbox">
<h3>Choose a semester</h3>
<select id="sem" name="sem" class = "dropdown">
<option value="1" class = "dropdown-content">1</option>
<option value="2" class = "dropdown-content">2</option>
<option value="3" class = "dropdown-content">3</option>
<option value="4" class = "dropdown-content">4</option>
<option value="5" class = "dropdown-content">5</option>
<option value="6" class = "dropdown-content">6</option>
<option value="7" class = "dropdown-content">7</option>
<option value="8" class = "dropdown-content">8</option>
</select></span>
<span class = "labelForTextbox">
<h3>Choose a class</h3>
<select id="cls" name="cls" class = "dropdown">
<option value="A" class = "dropdown-content">A</option>
<option value="B" class = "dropdown-content">B</option>
<option value="C" class = "dropdown-content">C</option>
<option value="D" class = "dropdown-content">D</option>
<option value="E" class = "dropdown-content">E</option>
<option value="F" class = "dropdown-content">F</option>
</select></span>
</div>
<div class="container">
<table class="rwd-table">
<tbody>
<tr>
<th>Subject</th>
<th>Number of Classes Attended</th>
<th>Total classes</th>
<th>Attendance Percentage</th>
</tr>
<tr>
<td data-th="sub">
Maths
</td>
<td data-th="cls1">
10
</td>
<td data-th="cls2">
20
</td>
<td data-th="cls3">
50%
</td>
</tr>
<tr>
<td data-th="sub">
Physics
</td>
<td data-th="cls1">
10
</td>
<td data-th="cls2">
20
</td>
<td data-th="cls3">
50%
</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>