-
Notifications
You must be signed in to change notification settings - Fork 0
/
admitted.html
82 lines (76 loc) · 1.84 KB
/
admitted.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
<!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>Admitted</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;
}
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>
<table cellspacing="0">
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Course</th>
<th>Gender</th>
<th>Phone</th>
</tr>
</thead>
<tbody>
<!-- All the rows should be appended here -->
</tbody>
</table>
</body>
<script src="./admitted.js"></script>
</html>