Chapter 5
Chapter 5
TH stands for Table Heading. This is used to specify the table heading.
TR stands for Table Row. This is used to create rows in a table.
TD stands for Table Data. This is used to create an individual cell in a table
<dt>CSS</dt>
<dd>A language for styling web pages.</dd>
</dl>
5. How do you create a table? Give an example of nested list.
Table stores the data in rows and columns. In HTML, tables are created with the <
TABLE > tag.
Maths
English
Science
(b) Hobbies
Playing games
Listening Songs
Both lists, ordered and unordered can be nested together. This is done by writing
an entire OL or UL under the <LI> tag.
The following examples show you different nested lists.
Unordered List Nested Within Unordered List
7. ‘Lists makes the data more attractive’. Justify the statement.
Lists improve readability by organizing information into a structured format.
Bullet points or numbered lists highlight each item, making it easier to
understand and more attractive.
(a) Subject
Maths
English
Science
(b) Hobbies
Playing games
Listening Songs
8. Aditi creates a web page using HTML. She wants to insert a table but she does not
know the tag to be used. Suggest to her the tab she should use for the same.
Aditi should use < Table>tag to create table in her HTML
Webpage.