Basic Table Assignment in HTML | HTML Assignment
Type this code in text editor and save file with .html extension
---------------------------------------------------
<!doctype html>
<html>
<head><title>Basic HTML Table</title>
</head>
<body>
<center><h3>Basic Computer Course</h3></center>
<table border="2" bordercolor="blue" align="center" >
<tr bgcolor="orange">
<th>Sr.no.</th>
<th>Course Name</th>
<th>Fees</th>
<th>Duration</th>
<th>Eligibility</th>
</tr>
<tr bgcolor="pink">
<td>1</td>
<td>CCC-Course on computer concept</td>
<td>3000</td>
<td>3 months</td>
<td>10th</td>
</tr>
<tr bgcolor="pink">
<td>1</td>
<td>DCA-Diploma in Computer Application</td>
<td>6000</td>
<td>6 months</td>
<td>10th</td>
</tr>
<tr bgcolor="pink">
<td>1</td>
<td>ADCA-Advance Diploma in Computer Application</td>
<td>10000</td>
<td>12 months</td>
<td>10th</td>
</tr>
<tr bgcolor="pink">
<td>2</td>
<td>CCA-Course on Computer Application</td>
<td>2500</td>
<td>3 months</td>
<td>10th</td>
</tr>
<tr bgcolor="pink">
<td>3</td>
<td>Tally</td>
<td>3000</td>
<td>3 months</td>
<td>10th</td>
</tr>
<tr bgcolor="pink">
<td>4</td>
<td>O Level</td>
<td>15,000</td>
<td>1 year</td>
<td>12th</td>
</tr>
</table>
</body>
</html>
---------------------------------------------------
Output-
0 Comments