-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
36 lines (35 loc) · 715 Bytes
/
table.html
File metadata and controls
36 lines (35 loc) · 715 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>table</title>
<style>
table,th,td{
border: 1px solid black;
border-collapse: collapse;
}
th,td{
padding: 8px;
text-align: left;
}
</style>
</head>
<body>
<table>
<th>Name</th>
<th>dsubject</th>
<th>grades</th>
<tr>
<td>bob</td>
<td>math</td>
<td>A</td>
</tr>
<tr>
<td>bob</td>
<td>science</td>
<td>B</td>
</tr>
</table>
</body>
</html>