1 Write code for the creation of a table using rowspan and c
1- Write code for the creation of a table using rowspan and colspan use all possible tags used in Table?
2- Write code for the creation of a Form using action attribute and use all possible tags used in Form?
Solution
<h2>Table</h2>
 <table style=\"width:100%\" border=\"2\">
 <tr>
     <th>Month</th>
     <th>Savings</th>
     <th>Savings for holiday!</th>
 </tr>
 <tr>
     <td>January</td>
     <td>$100</td>
     <td rowspan=\"2\">$50</td>
 </tr>
 <tr>
     <td>February</td>
     <td>$80</td>
 </tr>
 <tr>
     <td>March</td>
     <td colspan=\"2\">No data available</td>
 </tr>
</table>
 <br /><br /><br /><br /><br /><br />
 <h2>Form</h2>
 <!-- Form -->
 <form action=\"submit.php\" method=\"get\">
     First name: <input type=\"text\" name=\"fname\"><br>
     Last name: <input type=\"text\" name=\"lname\"><br>
     <input type=\"submit\" value=\"Submit\">
 </form>

