0
1.1kviews
Write a simple code to illustrate use of table and lists

Mumbai University > Information Technology > Sem 4 > Web Programming

Marks: 5M

Year: May 2014

1 Answer
0
1views

Code:

<html>
<head>
<title>IPGM</title>
</head>
<body BGCOLOR = "#80f040" ><! given values 128,240,64 >
    LIST OF SE IT SEMISTER IV SUBJECTS
<ol>
<li>Web Programming
    <ul>
    <li>Theory (100) </li>
    <li>Term Work (25) </li>
    </ul>
</ol>
<table style="width:100%" border=5>
    <tr>
<td>Jill</td>
<td>Smith</td>      
<td>50</td>
</tr>
<tr>
    <td>Eve</td>
    <td>Jackson</td>        
    <td>94</td>
</tr>
<tr>
    <td>John</td>
    <td>Doe</td>        
    <td>80</td>
    </tr>
</table>
</body>
<html>
Please log in to add an answer.