-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhtmltable
37 lines (32 loc) · 1.12 KB
/
htmltable
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
<!DOCTYPE html>
<html>
<head>
<title>TABLE 3</title>
</head>
<body><br><br>
<table cellspacing="0" border="1px" height="300px" width="800px" align="center">
<tr>
<td align="center" colspan="4"><font color="blue" size="8px">COLLEGE FORM</font></td>
</tr>
<tr>
<td><font color="purple" size="5px">NAME</font></td>
<td><font color="purple" size="5px">BRANCH</td>
<td><font color="purple" size="5px">ROLL NO</td>
<td><font color="purple" size="5px">YEAR</td>
</tr>
<tr>
<td><font size="3">Samira<br>Naashi<br>Saleha<br>Shruti<br>Alfiya</font></td>
<td><font size="3">Computer Science<BR>Electrical<br>IT<br>Mechanical<br>Civil</td>
<td><font size="3">1<br>2<br>3<br>4<br>5</td>
<td><font size="3">2014<br>015<br>2016<br>2017<br>2018</td>
</tr>
<tr style="background-color: grey;">
<td colspan="2" rowspan="4"><font color="darkblue" size="5px" style="italic">Student Sign.</font></td>
<td colspan="2" rowspan="4"><font color="darkblue" size="5px" style="italic">Staff Sign.</font></td>
</tr>
<tr style="background-color: pink;">
<td colspan="4">Submit</td>
</tr>
</table>
</body>
</html>>