-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
39 lines (39 loc) · 1.1 KB
/
table.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Accessible Table</title>
</head>
<body>
<header>
<h1>HTML TABLE</h1>
</header>
<main>
<table>
<caption>
MY info
</caption>
<colgroup>
<col span="3" style="background-color:aquamarine"/>
</colgroup>
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Name</th>
<th scope="col">GPA</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">SSS</td>
<td>Labanya</td>
<td>5.00</td>
</tr>
<tr>
<td scope="row">HSC</td>
<td>Labanya</td>
<td>5.00</td>
</tr>
</tbody>
</table>
</main>
</body>