Practical 113.6 : Various tag properties in html code
Program Code :Â
<!DOCTYPE html>
<html>
<head>
   <title>About ITI – Industrial Training Institute</title>
</head>
<body style=”font-family: Arial, sans-serif; background-color: #f0f8ff; color: #333;”>
   <h1 style=”color: darkblue;”>Welcome to ITI (Industrial Training Institute)</h1>
   <p>
       <b>Industrial Training Institutes (ITI)</b> are institutions that provide vocational training to students.Â
       The main goal is to equip students with <i>practical skills</i> and make them job-ready.Â
       ITIs are very <u>important</u> for technical education in India.
   </p>
   <h2>Popular Trades in ITI</h2>
   <ul>
       <li>Electrician</li>
       <li>Fitter</li>
       <li>Welder</li>
       <li>Mechanic (Motor Vehicle)</li>
       <li>Computer Operator and Programming Assistant (COPA)</li>
   </ul>
   <h2>Steps to Join an ITI Course</h2>
   <ol>
       <li>Pass at least 8th or 10th standard</li>
       <li>Choose a trade of your interest</li>
       <li>Apply for admission</li>
       <li>Attend classes and practical sessions</li>
       <li>Get certified and apply for jobs</li>
   </ol>
   <h2>Course Table</h2>
   <pre>
Trade Name      Duration    Eligibility
——————————————
Electrician     2 Years     10th Pass
Fitter          2 Years     10th Pass
Welder          1 Year      8th Pass
COPA            1 Year      10th Pass
   </pre>
   <hr>
   <h2>Why Choose ITI?</h2>
   <p>
       ITIs are affordable and offer great opportunities.Â
       Many students get jobs soon after completing their training.Â
       Some even start their own businesses in their skilled trade.
   </p>
   <h2>Useful Link</h2>
   <p>
       Visit the official <a href=”https://www.ncvtmis.gov.in” target=”_blank”>NCVT ITI Website</a> for more information.
   </p>
   <h2>ITI Training Image</h2>
   <img src=”https://www.careerindia.com/img/2018/07/iti-training-1532331147.jpg” alt=”ITI Training” width=”500″>
</body>
</html>