-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.html
More file actions
43 lines (40 loc) · 853 Bytes
/
list.html
File metadata and controls
43 lines (40 loc) · 853 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
37
38
39
40
41
42
43
<html>
<head>
<title>Lists</title>
</head>
<body>
<h1>Table is as follows:-</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Code</th>
<th>Marks</th>
</tr>
</thead>
<tbody>
<tr>
<td>Sahil</td>
<td>100</td>
<td>98</td>
</tr>
<tr>
<td>Sameer</td>
<td>101</td>
<td>85</td>
</tr>
<tr>
<td>Raj</td>
<td>102</td>
<td>70</td>
</tr>
</tbody>
<tfoot>
<tr>
<th colspan="2">Total Marks : 253</th>
<!-- <th>253</th> -->
</tr>
</tfoot>
</table>
</body>
</html>