Practical 113.7 : Use of table tag in html code
Program Code :
<!DOCTYPE html>
<html>
<head>
<title>ITI Trades Table</title>
</head>
<body style=”font-family: Arial; background-color: #f2f2f2; padding: 20px;”>
<h1 style=”color: darkblue;”>ITI Trades and Details</h1>
<p>
The following table provides detailed information about some of the most popular trades offered at
<b>Industrial Training Institutes (ITIs)</b> across India.
</p>
<table border=”2″ cellpadding=”10″ cellspacing=”0″ style=”background-color: white; width: 80%; border-collapse: collapse;”>
<tr style=”background-color: #dbe9f4; color: black;”>
<th>Trade Name</th>
<th>Duration</th>
<th>Eligibility</th>
<th>Job Opportunities</th>
</tr>
<tr>
<td>Electrician</td>
<td>2 Years</td>
<td>10th Pass</td>
<td>Electrical Technician, Lineman, Wireman</td>
</tr>
<tr>
<td>Fitter</td>
<td>2 Years</td>
<td>10th Pass</td>
<td>Plant Maintenance, Assembly Fitter</td>
</tr>
<tr>
<td>Welder</td>
<td>1 Year</td>
<td>8th Pass</td>
<td>Welder, Fabricator</td>
</tr>
<tr>
<td>COPA</td>
<td>1 Year</td>
<td>10th Pass</td>
<td>Computer Operator, Data Entry Operator</td>
</tr>
<tr>
<td>Mechanic (Motor Vehicle)</td>
<td>2 Years</td>
<td>10th Pass</td>
<td>Auto Technician, Service Mechanic</td>
</tr>
</table>
<br>
<p>
ITIs provide valuable hands-on training that helps students to get jobs easily or start their own businesses.
</p>
</body>
</html>