-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTable-2.html
More file actions
43 lines (37 loc) · 1.4 KB
/
Table-2.html
File metadata and controls
43 lines (37 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>table-2</title>
</head>
<body>
<h1 style="text-align: center; font-size: 30px;">Table</h1>
<div style="margin-left: 200px">
<div >
<table border="2px" style="background-color: bisque; width: 700px; height:300px ; border-collapse: collapse;">
<tr style="background-color: rgba(67, 223, 19, 0.904);">
<th>Name</th>
<th rowspan="3">Result</th>
<th>Class</th>
<th>Mark</th>
</tr>
<tr>
<td>Tanvir</td>
<td>x</td>
<td>80</td>
</tr>
<tr>
<td>Ayan</td>
<td>11</td>
<td>90</td>
</tr>
<tr>
<td colspan="3" style="text-align:center;background-color: darkorange;">Total Marks</td>
<td>100</td>
</tr>
</table>
</div>
</div>
</body>
</html>