-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (74 loc) · 2.56 KB
/
index.html
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<html>
,<head>
</head>
<body>
<h1> Nested Tables</h1>
<table border="2px" width="700px" style="text-align:center; font-size:large;;">
<tr>
<th>Header Column 1</th>
<th>Header Column 2</th>
<th>Header Column 3</th>
<th>Header Column 4</th>
</tr>
<tr>
<td rowspan="2">Row 2 - Item 1</td>
<td rowspan="2">Row 2 - Item 2</td>
<td rowspan="6">
<b> Row 2: Nested Table 1 </b>
</br> </br>
<table border="2px">
<tr>
<th>Row 1 Header</th>
<td>Item</td>
</tr>
<tr>
<th>Row 2 Header</th>
<td>Item</td>
</tr>
<tr>
<th>Row 3 Header</th>
<td>Item</td>
</tr>
</table>
</td>
<td rowspan="2">Row 2 - Item 4 <br>A second line</td>
</tr>
<tr> </tr>
<tr>
<td rowspan="4">
<b>Row 3: Nested Table 2</b>
</br> </br>
<table border="2px">
<tr>
<th>Row 1 Header</th>
<td>Item</td>
</tr>
<tr>
<th>Row 2 Header</th>
<td>Item</td>
</tr>
</table>
</td>
<td rowspan="4"> Row 3- item 2</td>
<td rowspan="5"> Row 3- item 3</td>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr style="text-align: left;">
<td> Row 4 - Item 1</td>
<td> Row 4 - Item 2</td>
<td> Row 4 - Item 3</td>
</tr>
<tr>
<td colspan="4" style="text-align: left;"> Row 5 - Last Row Of Outer Table</td>
</tr>
</table>
<marquee><fONT COLOR="green" SIZE="6" STYLE="LUSEGOE UI"><B><u>
CCO - 116775<FONT COLOR="light blue"> Muhammad Usama
</FONT><FONT COLOR="gREEN"></FONT></u></B></fONT> </marquee>
</body>
</html>