-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
44 lines (42 loc) · 1.32 KB
/
table.html
File metadata and controls
44 lines (42 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<!-- Boostrap Activing Code -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Table Example With Boostrap</title>
</head>
<body>
<table class="table table-dark">
<caption>List of apllication's users</caption>
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Second</th>
<th scope="col">Third</th>
</tr>
</thead>
<tbody>
<tr class="table-dark">
<th scope="row">1</th>
<td scope="row"><a>Student00001</a></td>
<td scope="row">Student00002</td>
<td scope="row">Student00003</td>
</tr>
<tr class="table-dark">
<th scope="row">2</th>
<td>Kenan</td>
<td>Michael</td>
<td>Tony</td>
</tr>
<tr class="table-dark">
<th scope="row">3</th>
<td>Larry</td>
<td>Aybars</td>
<td>Furry</td>
</tr>
</tbody>
</table>
</body>
</html>