How to create nest tables within tables in HTML?
Answer / chaitu
We can create nest table i.e. table inside a table. To create table we use following attributes:
<table>……</table>: declare starting and ending of table.
<tr>…</tr>: declare table row.
<td>…</td>: table data.
<table>
<tr>
<td>first cell of the outer table</td>
<td>second cell of the outer table,
creating second table inside the first table
<table>
<tr>
<td>first cell of the second table</td>
<td>second cell of the second table</td>
</tr>
</table>
</td>
</tr>
</table>
Is This Answer Correct ? | 1 Yes | 0 No |
Describe when it’s appropriate to use the small element and provide an example?
How do I link to a location in the middle of an HTML document?
Explain marquee tag.
How to create a button which acts like a link?
Is the alt attribute mandatory on img elements? If not, can you describe a scenario where it can be set to an empty value? Does an empty value affect accessibility in any way?
Which network design layer provides a connection point for end user devices to the network? access core distribution networkby a networking device
What’s the difference between the meter element and the progress element?
Consider the following markup: <figure> <picture> <source media="(min-width: 40em)" srcset="large.jpg 1024w, medium.jpg 640w, small.jpg 320y"> <img src="medium.jpg" alt="London by night"> </picture> <figcaption>A landscape of London by night</figcaption> </figure> Is it valid? If not, can you explain why?
What is the mark element? Can you describe an example of use for this element?
What is the longdesc attribute? Can you explain its purpose?
How to create nest tables within tables in HTML?
Is it possible to express a date range using a single time element?