-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables.html
59 lines (58 loc) · 1.29 KB
/
tables.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
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="static/css/styling.css">
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Tables</title>
</head>
<body>
<h2>List of Students</h2>
<table>
<tr>
<th>Name</th>
<th>Email</th>
<th>Course Taken</th>
<th>Age</th>
<th>Gender</th>
</tr>
<tr>
<td>Alvin</td>
<td>[email protected]</td>
<td>Full Stack</td>
<td>18</td>
<td>Male</td>
</tr>
<tr>
<td>Moses</td>
<td>[email protected]</td>
<td>Cybersecurity</td>
<td>49</td>
<td>Male</td>
</tr>
<tr>
<td>Marsha</td>
<td>[email protected]</td>
<td>Data Science</td>
<td>25</td>
<td>Female</td>
</tr>
<tr>
<td>Kelly</td>
<td>[email protected]</td>
<td>Full Stack</td>
<td>19</td>
<td>Male</td>
</tr>
<tr>
<td>Kevin</td>
<td>[email protected]</td>
<td>Cybersecurity</td>
<td>25</td>
<td>Male</td>
</tr>
</table>
</body>
</html>