-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtables.html
More file actions
62 lines (57 loc) · 1.3 KB
/
tables.html
File metadata and controls
62 lines (57 loc) · 1.3 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
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Students</title>
<style>
th
{
background-color: blue;
}
table{
border: 2px solid gold;
font-size: 20px;
font-family: Arial, Helvetica, sans-serif;
margin-right: auto;
}
td,th{
border: 2px solid gold;
}
</style>
</head>
<body>
<table>
<!-- row 1 -->
<table border="1">
<tr>
<th>name</th>
<th>course</th>
<th>Year</th>
</tr>
<!-- row 2 -->
<tr>
<th>Collins</th>
<th>Software Engineering</th>
<th>2025</th>
</tr>
<!-- row 3 -->
<tr>
<th>James</th>
<th>Machine Learning</th>
<th>2026</th>
</tr>
<!-- row 4 -->
<tr>
<th>Ruth</th>
<th>Data Science</th>
<th>2027</th>
</tr>
<!-- last row -->
<tr>
<td>henry</td>
<td>Machine Learning</td>
</tr>
</table>
</body>
</html>