●Computer, ●Ch- using lists and tables in HTML5
●Create a webpage using HTML to display the details of your classmates in tabular format.
●Instructions about the webpage is given in picture.
● those who will answer I will tag brainlist.
Attachments:
Answers
Answered by
1
Answer:
<tr>
<th>S no.</th>
<td>1</td>
<td>2</td>
<td>3</td>
...and so on for the Sno.
</tr>
<tr>
<th>birthday</th>
<td>nitun</td>
<td>apoorva</td>
<td>sakshi</td>
...and so on for Names
</tr>
<tr>
<th>birthday</th>
<td>12 june</td>
<td>date</td>
<td>date</td>
...and so on for the birthdays
</tr>
<tr>
<th>EMAIL ID</th>
<td>[email protected]</td>
<td>email id</td>
<td> email id</td>
...and so on for the EMAIL IDS
</tr>
<tr>
<th>PHONE NO</th>
<td>2234547</td>
<td>2829292</td>
<td>PHN NO.</td>
...and so on for the phone no....
</tr>
Explanation:
just add the data serially according to the table in the provided space .
Similar questions