Grade 7
Chapter 6: HTML – Images, Links and Tables
Learning Objectives:
● Apply attributes such as src, alt, href, width.
● Differentiate and create internal/external links.
● Explain table structure (rows, cells).
● Create ordered/unordered lists.
A. Tick (✓) the correct option.
1. The tag is used to create an HTML link.
✓ <a> ☐ <link> ☐ <href>
2. Which attribute is necessary to specify the URL in an image tag?
✓ src ☐ href ☐ url
3. The tag is used to create a table header.
✓ <th> ☐ <tr> ☐ <td>
4. Which of the following is used to link the pages within a websites?
☐ E-mail ☐ External ✓ Internal
5. Which of the following contains text that describes the data in row or column?
✓ Header cell ☐ Data cell ☐ Row
2
B. Write ‘T’ for True and ‘F’ for False
1. The <img> tag requires an end tag. F
2. WIDTH specifies the height of an image in pixels. F
3. Lists are used to organize the information and present it in a structured manner.
T
4. A <div> tag is used to align the image on the web page. F
5. Anchors are links to sections within the same page. T
C. Fill in the Blanks
1. The ______ tag incorporates graphics in the HTML document. <img>
2. ______ list is used to show the items not in a particular order. Unordered
3. The places where the columns and rows intersect are called ______. Cells
4. Spanning cells are also called ______. Merged cells
F. Answer the Following Questions
1. What is the use of <a> tag in HTML?
Ans: The <a> tag is used to create a link to another webpage or a section
within the same page.
2. Name two attributes of the <img> tag.
Ans: src and alt
3. Which attribute is used to set the width of a table in HTML?
Ans: width
G. Answer Briefly
1. Explain the attributes of image tag.
The tag has attributes like
src (to specify the image source),
alt (to describe the image),
width (to set image width),
height (to set image height).
3
2. Write about Internal and External links
• Internal links connect to different sections or pages within the same
website.
• External links connect to pages on different websites.
3. Why do we create image link? Write its syntax
We create image links to make images clickable and direct users to another
page.
Syntax: <a href="url"><img src="[Link]" alt="description"></a>
4. Explain all the building blocks of HTML tables.
The building blocks of HTML tables are:
<table>: Defines the table.
<tr>: Defines a row.
<th>: Defines a header cell.
<td>: Defines a data cell.