-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
56 lines (55 loc) · 1.5 KB
/
table.html
File metadata and controls
56 lines (55 loc) · 1.5 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
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<table border="5px" cellspacing="0px" cellpadding="10px">
<thead>
<tr>
<th></th>
<th>1</th>
<th>2</th>
<th>3</th>
<th></th>
<th colspan="2">4</th>
<th colspan="2">5</th>
</tr>
</thead>
<tbody>
<tr>
<th>Mon</th>
<td>c++</td>
<td>html</td>
<td>css</td>
<td rowspan="5">B<br>R<br>E<br>A<br>K</td>
<td colspan="2">java</td>
<td colspan="2">c++</td>
</tr>
<tr>
<th>Tue</th>
<td rowspan="3">hindi</td>
<td colspan="2">web dev</td>
<td>c++</td>
<td>html</td>
<td>css</td>
<td rowspan="2">os</td>
</tr>
<tr>
<th>Wed</th>
<td colspan="2">c++</td>
<td colspan="3">django</td>
</tr>
<tr>
<th>Thu</th>
<td colspan="2">java</td>
<td>english</td>
<td>go</td>
<td colspan="2">networks</td>
</tr>
<tr>
<th>Fri</th>
<td colspan="3">data science</td>
<td colspan="2">c++</td>
<td>go</td>
<td>pyton</td>
</tr>
</tbody>
</table>
</html>