Westonci.ca is the premier destination for reliable answers to your questions, provided by a community of experts. Get immediate and reliable answers to your questions from a community of experienced professionals on our platform. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A platform.
Sagot :
See below for the code in HTML
How to code the table in HTML?
The given table has the following features:
- Tables
- Cell merging
- List (ordered and unordered)
The HTML code that implements the table is as follows:
<table border="1" cellpadding="1" cellspacing="1" style="width:500px">
<tbody>
<tr>
<td colspan="1" rowspan="2"><strong>IMAGE</strong></td>
<td colspan="1" rowspan="2"><strong>name</strong></td>
<td colspan="2" rowspan="1"><strong>first name</strong></td>
</tr>
<tr>
<td colspan="2" rowspan="1"><strong>last name</strong></td>
</tr>
<tr>
<td>DOB</td>
<td>yyyy</td>
<td>mm</td>
<td>dd</td>
</tr>
<tr>
<td>Qualifications</td>
<td colspan="3" rowspan="1">references</td>
</tr>
<tr>
<td>
<ol>
<li> </li>
<li> </li>
<li> </li>
<li> </li>
</ol>
</td>
<td colspan="3" rowspan="1">
<ol type = "a">
<li> </li>
<li> </li>
<li> </li>
<li> </li>
</ol>
</td>
</tr>
</tbody>
</table>
<p> </p>
Read more about HTML at:
https://brainly.com/question/14311038
#SPJ1
Thank you for trusting us with your questions. We're here to help you find accurate answers quickly and efficiently. Thank you for choosing our platform. We're dedicated to providing the best answers for all your questions. Visit us again. Thank you for using Westonci.ca. Come back for more in-depth answers to all your queries.