-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (47 loc) · 1.01 KB
/
index.html
File metadata and controls
47 lines (47 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Iterate through table rows</title>
<style>
.td {
padding: 30px;
}
</style>
</head>
<body>
<h1>Employees</h1>
<table>
<thead>
<tr>
<td>Id</td>
<td>Full Name</td>
<td>Retired</td>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>John Smith</td>
<td>
<input type="checkbox" checked>
</td>
</tr>
<tr>
<td>2</td>
<td>James Smith</td>
<td>
<input type="checkbox">
</td>
</tr>
<tr>
<td>3</td>
<td>Joseph Smith</td>
<td>
<input type="checkbox" checked>
</td>
</tr>
</tbody>
</table>
</body>
</html>