Solution of HTML Worksheet-3

  1. Ans:  The value of START attribute should be a number. If you want to start the list numbering from V, i.e. the fifth roman numeral, then we should write the statement as:
    <OL TYPE=1 START=5>
  2. Ans: The <OL> tag is used to create an ordered list. In an ordered list, a number or a letter appears in front of every list item.
    <UL> is defines an unordered (bulleted) list. It has atrributes circle,disc and sqaure.
  3. Ans: Error- CENTER is not a valid alignment value for image.
    Correct Code -
    <CENTER> <IMG SRC = "sky.gif"> </CENTER>
  4. Ans:
    <OL TYPE="a" START=4>
    <LI> Internet </LI>
    <LI> E-mail</LI>
    <LI> Computer Virus</LI>
    <LI> E-commerce</LI>
    </OL>
  5. Ans:
    <DL>
    <DT> ARCHAEOLOGIST</DT>
    <DD> The person who studies archaeology is called an archaeologist</DD>
    <DT> INSCRIPTIONS</DT>
    <DD> Inscriptions are the writing , which are engraved on rocks, pillars, clay tablets, the walls of temples and caves.</DD>
    </DL>
  6. Ans: 
    (a) Unordered List
    (b) Ordered List
    (c) List Item
  7. Ans: <IMG> tag is used to insert an image in a web page.
    SRC option is used with this tag
  8. The following values of TYPE attribute are used with <OL> tag:
    Values of TYPE attribute Description
    1 Default:Decimal number(1,2,3,...)
    a Alphabetically Ordered List Lower Case (a,b,c,...)
    A Alphabetically Ordered List Upper Case (A,B,C,...)
    i Roman numbers Lower Case (i,ii,iii,....)
    I Roman numbers Upper Case (I,II,III,....)
  9. Ans: START attribute is used to specify the first number in the list. For example, if you want to start the list with 5, then write
    <OL TYPE=1 START=5>
  10. Ans: IMG tag is used to specify an image to be displayed in an HTML document.