MENU

Chapter 6 Inserting Images and Links in HTML Solutions

Question - 11 : - Write the HTML code to display an image on the right side of the page.

Answer - 11 : -

Question - 12 : - Name the values that can be assigned to align attribute of tag.

Answer - 12 : -

The values that can be assigned to align attribute of tag are as follows:

  1. top
  2. bottom
  3. left
  4. right
  5. middle

Question - 13 : - Write the HTML code to display an inline image named pencil.jpg located at C:\ in the center of your Web page.

Answer - 13 : -


Question - 14 : - Define height and width attributes of tag.

Answer - 14 : -

The width and height attributes tell the dimension of an image to the browser. Both (height and width) attributes require integer values (dimension of image in terms of either pixels or percentage of its actual size).

Question - 15 : - Identify the errors in the following HTML code and write the correct code with each correction underlined. 
IMAGES</head></div><div><body bgcolor="PICI.JPG"></div><div><img href="ABC.JPG"></div><div>HERE IS MY IMAGE FILE</div><div></bgcolor></div><div></html></div></div></a></strong> <p><b>Answer - 15</b> : - <div><span style="background-color: transparent;">Error 1 The <title> tag must be within <head> element.</span><br></div><div><div>Error 2 bgcolor attribute of body element supports a color like red, green or its color value.</div><div>Error 3 <img> tag needs a source attribute src to place an image.</div><div>Error 4 body element must be closed not bgcolor attribute.</div><div><br></div><div>The correct code is as follows:</div><div><html></div><div><head></div><div><title>IMAGES
HERE IS MY IMAGE FILE

Question - 16 : -
Explain the need of linking between Web pages.

Answer - 16 : - Linking between different Web pages is required, as when we create Websites, different html files (Web pages) are created. These files contain different modules and cannot be open individually. If we link between them, the Website becomes more productive and informative.

Question - 17 : - How is external linking different from internal linking?

Answer - 17 : - External link is a type of linking that goes to another Website. It is a linking of two different documents. While, internal linking is a type of linking that links pages within a single Website, various sections of same document or different document.

Question - 18 : -
Explain the given command

Answer - 18 : -

In this command, anchor tag and its href attribute is included. The text (Click Here for wild animals) will appear underlined and indicates that clicking the text activates the hypertext link. The address of the referenced document can be specified by an absolute or relative URL.
Thus, “wild.html” is an URL or Web page address and Click Here for wild animals is the hyperlinked text.

Question - 19 : - Name the attributes of tag which are used for internal linking in a Web page.

Answer - 19 : -

The attributes of tag which are used for internal linking in a Web page as follows:

  1. href used to specify the URL of the segment the link goes to.
  2. name gives the name to the segment.

Question - 20 : - What is the purpose of using the attribute href in tag?

Answer - 20 : -

The href stands for Hypertext Reference. The href attribute is used with tag to specify link to some other HTML page or Website.
e.g.
click here to go to learncbse.
It will display like:
click here to go to learncbse.

Free - Previous Years Question Papers
×