Page 114 - Computer Class 08
P. 114
Descriptive Type Questions
A. Write the tags for creating a table having borders and title both. The table should
be of famous Indian cuisine.
Tags
B. Answer the following questions.
1. What is the use of HTML frames?
2. What is a table? Why tables are used?
3. Differentiate between cellspacing and cellpading.
4. What is colspan?
5. What is rowspan?
A. Do as directed.
· Add a table to your content. See what happens if you create a row with more or
less cells than the other rows.
· Create a table with several rows and columns. Now, introduce some rowspans
and colspans. Experiment with putting more cells on a row or taking some away
and see how the table is affected. What happens if you make the colspan or
rowspan greater than the total number or rows or columns in the table?
B. Write the tags given below to add a banner or title frame in Notepad. Now, create
the web page of your own.
<html>
<body>
<frameset rows=“20%*”>
<frame src=“title.html”>
<frameset cols=“30%,*”>
<frame src=“menu.html”>
<frame src=“content.html”>
</frameset>
</body>
</html>
Computer-8 114