Advertisements
Advertisements
Question
What are the core tags used to create table in HTML?
Solution
There are five core tags are used to create a table in HTML, They are,
<table> tag is used to create a table.
<tr> tag defines table rows
<th> tag defined table columns
<td> tag is used to specify the data in a cell
<caption> tag defines title for the table
Example:
<Table border= 10>
<Caption> Book Name </Caption>
<TR>
<TH> Book </TH>
<TD> Computer Application </TD>
</TR>
</Table>
APPEARS IN
RELATED QUESTIONS
Write HTML Code for the following table.
A list block can be defined inside another list is:
What are the types of list in HTML?
How will you define numbered list?
Write an HTML code to display the following text in exactly the same way as given below
I am studying Computer Science Application.
Difference between <UL> and <OL> tags.
Explain the attributes used with <table> tag in HTML.
Explain the types of list with suitable HTML code.
Write HTML code to create the following table:
Observe the screenshot of the given web page:
Write suitable HTML code to design it.