-
Notifications
You must be signed in to change notification settings - Fork 0
/
students.html
88 lines (84 loc) · 2.26 KB
/
students.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
<!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>All Students</title>
<style>
.navbar
{
height: 60px;
display: flex;
justify-content:space-around;
background-color: rgb(250, 250, 250);
box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
a{
text-decoration: none;
color: black;
font-size: 15px;
margin-top: -10px;
}
#filter
{
margin-top: 10px;
margin-bottom: 10px;
width: 180px;
height: 30px;
}
thead> tr
{
background-color: #007F7F;
height: 40px;
font-size: 20px;
color: white;
}
table
{
width: 100%;
}
tbody >tr
{
text-align: center;
font-size: 22px;
}
tbody
{
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
</style>
</head>
<body>
<div class="navbar">
<a href="./index.html"><h1>Add Students</h1></a>
<a href="./students.html"><h1>Students Database</h1></a>
<a href="./admitted.html"><h1>Admitted</h1></a>
<a href="./rejected.html"><h1>Rejected</h1></a>
</div>
<select id="filter" onchange="changeOnCourse()">
<option value="">Filter By Course</option>
<option value="all">All</option>
<option value="Web-Development">Web-Development</option>
<option value="Android-Development">Android-Development</option>
<option value="Data-Analitics">Data-Analitics</option>
</select>
<table cellspacing="0">
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Course</th>
<th>Gender</th>
<th>Phone</th>
<th>Admitted</th>
<th>Rejected</th>
</tr>
</thead>
<tbody>
<!-- Table Rows should be appended Here -->
</tbody>
</table>
</body>
<script src="./students.js"></script>
</html>