Chapter-8 Class VIII
Chapter-8 Class VIII
Ans. A nested list is a list inside another list. An ordered and unordered list can be nested
within each other to form a multi-level list.
<html>
<head>
<title>Things to do Today</title>
</head>
<body>
<h1>Things to do Today</h1>
<ol>
<li>Feed Cat
<ul type=circle>
<li>Rinse Bowl
<li>Open Cat food
<li>Mix wet and Dry Food in a bowl
<li>Deliver on a Silver Platter to a Pixel
</ul>
<li>Wash Car
<ul type=circle>
<li>Vacuum Interior
<li>Wash Exterior
<li>Wax Exterior
</ul>
<li>Grocery Shopping
<ul type=circle>
<li>Plan Meals
<li>Clean out Fridge
<li>Make List
<li> Go to Store
</ul>
</ol>
</body>
</html>
Q5.) What is Description List?
Ans. A Description list consists of a term followed by its definition. It starts with <dl> and
ends with </dl> tag. The <dl> tag is used in conjunction with <dt> and <dd> tags where:
<dt> helps in defining the terms or names
<dd> helps in descripting each term or name
Q6.) What are tables? Write the advantages of tables.
Ans. Tables are used to arrange the data in a tabular format i.e. Rows and Columns. It is
the flexible and attractive way of presenting the data.
Advantages:
1.) It helps to present data in a comprehensive manner.
2.) Tables help in comparative analysis of data.
3.) Information displayed in tables is easier to read and quicker to evaluate.