-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudents.html
More file actions
56 lines (54 loc) · 1.09 KB
/
students.html
File metadata and controls
56 lines (54 loc) · 1.09 KB
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
<html>
<head>
<style>
table, th, td {
border: 1px dotted black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: center;
}
</style>
</head>
<body>
<table style="width:50%">
<tr>
<th colspan="4" style="color:#FC3004;">STUDENT INFORMATION</th>
<tr style="background-color:#DCDCDC;">
<th colspan="2" style="color:#041EFC;">Name and Roll No.</th>
<th colspan="2" style="color:#041EFC;">Contact No. AND Email-ID</th>
</tr>
<tr>
<td style="color:#D604FC;">Name</td>
<td style="color:#D604FC;">Roll No.</td>
<td style="color:#D604FC;">Contact</td>
<td style="color:#D604FC;">Email-ID</td>
</tr>
<tr style="background-color:#DCDCDC;">
<td>Eve</td>
<td>01</td>
<td>94</td>
<td>@111</td>
</tr>
<tr>
<td>John</td>
<td>02</td>
<td>80</td>
<td>@222</td>S
</tr>
<tr style="background-color:#DCDCDC;">
<td>Jon</td>
<td>08</td>
<td>81</td>
<td>@333</td>S
</tr>
<tr>
<td>John</td>
<td>03</td>
<td>80</td>
<td>@222</td>S
</tr>
</table>
</body>
</html>