-
Notifications
You must be signed in to change notification settings - Fork 0
/
table2.html
46 lines (46 loc) · 1.13 KB
/
table2.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
<html>
<head>
<title> tables </title>
</head>
<body>
<center><table border="2" cellpadding="5">
<h3 align="center"> <b><u>table no 1</u></b></h3>
<tr>
<th>HTML</th>
<th>ASP</th>
<th>CFML</th>
</tr>
<tr>
<th>HYPER TEXT MARKUP LANGUAGES</th>
<th>ACTIVE SERVER PAGES</th>
<th>COLD FUSSION MARKUP LANGUAGES</th>
</tr>
<tr>
<th>HTML 4.0</th>
<th>ASP 2.0</th>
<th>CFML 5.0</th>
</tr>
</table>
<br><br><br><br>
<center><table border="1" cellspacing="0" cellpadding="5">
<h3 align="center"> <b><u>table no 2</u></b></h3>
<tr>
<th colspan="3"><b>No. of Students</b></th>
<th>Total</th>
</tr>
<tr>
<td>YEAR 1999</td>
<td>YEAR 2000</td>
<td>YEAR 2001</td>
<td rowspan="2">288</td>
</tr>
<tr>
<td>48</td>
<td>96</td>
<td>144</td>
</tr>
<tr>
<td align="center" colspan="4">COMPUTER SCIENCE</td>
</tr>
</body>
</html>