75% found this document useful (4 votes)
10K views

CLASS 7 - COMPUTER - CH-7 HTML5-Images, Links and Tables - NOTES

Happiness is a matter of choice. This document defines HTML terms like cell padding, cell spacing, and anchors. It differentiates between bulleted and numbered lists, and internal and external links. It also discusses adding images to web pages, image links, and the building blocks of HTML tables. The document answers questions about creating image links, defining table components, and using spanning cells.

Uploaded by

Shivali Verma
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
75% found this document useful (4 votes)
10K views

CLASS 7 - COMPUTER - CH-7 HTML5-Images, Links and Tables - NOTES

Happiness is a matter of choice. This document defines HTML terms like cell padding, cell spacing, and anchors. It differentiates between bulleted and numbered lists, and internal and external links. It also discusses adding images to web pages, image links, and the building blocks of HTML tables. The document answers questions about creating image links, defining table components, and using spanning cells.

Uploaded by

Shivali Verma
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

“Happiness is a matter of choice”

.
CLASS: VII
SECTION: ALL SECTIONS
SUBJECT: COMPUTER SCIENCE
SESSION: 2023-24

CHAPTER: 7 HTML5-Images,Links and Tables


NOTES

D. Define the following.


1. Cell Padding: Cell padding is the amount of space between the cell border and the contents of a cells.

2. Cell Spacing: Cell Spacing is the amount of space between the cell borders or the distance between the
cells.

3. Anchors: Anchors are the links to sections within the same page. These can be created using the <A>
tag.

E. Differentiate between the following: -

1. Bulleted list tag and Numbered list tag.


Bulleted list tag Numbered list tag.
a) Bulleted list tag is used to show the items not in a) Numbered list tag is used to show the items in a
a particular order. specific order.
b) It is also known as Unordered list. b) It is also known as ordered list.
c) <UL> tag is used to create Bulleted list. c) <OL> tag is used to create Numbered list.

2. Internal link and External link


Internal link External link
a) Internal links are the links to the pages within a a) External links are the links outside the currently
website. opened website.
b) These links can be either Absolute or Relative. b) These links must always be absolute.

F. Answer in 1-2 sentences.

1. Why do we add images to the web pages?


Ans1: We add images to improve the design and appearance of our web page. Also, images are easier to
understand and communicate information faster than text.

2. What do you mean by SRC in image tag?


Ans2: SRC stands for ‘source’ of the image file. It specifies the URL (Uniform Resource Locator) of the
image.

3. What is the use of creating a table in web page?


Ans3: HTML tables enable us to effectively organize the large volume of data in the form of rows and
columns.

G. Answer briefly: -
1. Why do we create image link? Write its syntax.
Ans1: We create a link to an image so that the visitor can click on that image to display the link.
Syntax: -
<A HREF=”www.google.com”><IMG SRC=”Image.jpg”></A>
www.queensvalleyschool.in Sector-8, Phase-I, Dwarka, New Delhi-110077
“Happiness is a matter of choice”
.
2. Define the building blocks of HTML tables.
Ans2: The building Blocks of HTML tables are-
1. <TABLE> tag- Used to define the table itself.
2. <TR> tag-Used to define a Table row.
3. <TH> tag-Used to define a Table header.
4. <TD> tag-Used to define the table data or cell content.

3. What is the use of Spanning cells?


Ans3: Spanning cells is used in a table to combine two or more cells in a row or column to make a one large
cell. Spanning cells is also called Merging cells. The attributes COLSPAN and ROWSPAN indicate how many
columns and rows a cell should take up.

www.queensvalleyschool.in Sector-8, Phase-I, Dwarka, New Delhi-110077

You might also like