-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtable.htm
61 lines (57 loc) · 954 Bytes
/
table.htm
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
<html>
<body vlink="green">
<table border=2>
<tr><td align="center" colspan=2>A
<td align="center" colspan=2>B
<td align="center"colspan=2>C
</tr>
<tr>
<td align="center" colspan=3>D
<td align="center" colspan=3>E
</tr>
<tr><td align="center" colspan=2 rowspan=2>F
<td align="center" colspan=2>G
<td align="center" colspan=2 rowspan=2>O
</tr>
<tr><td align="center" colspan=2>I</tr>
<tr>
<td colspan=3 >
<ul type="circle">
<li>ABC
<li>PQR
<li>RMP
</ul></td>
<td colspan=3 width="50%"><dl>
<dt>Programming languages:-</dt>
<dd>
<ol><li>Structured languages
<ol type="a"><li>C</li>
<ol>
<li>Loops
<li>If_else
<li>Else ifladder
<li>Pointers
</ol>
</ol>
<li>Object Oriented Languages
<ol type="A"><li>Pure object oriented languages
<ol type="a"><li>Java
<li>Cobol
</ol>
<li>ObjectBase languages
<ol type="i"><li>C++</li>
</ol>
</ol>
<li>Scripting language
<ul type="disc">
<li>JS
<li>VB
</ul>
</ol>
</ol>
</dd>
</dl></td>
</tr>
</table>
<body>
</html>