Answer the following:
( Discuss the use of <UL> and <LI> tags with
suitable example of each.
(ii) How can you set an image as background for
an HTML document?
[2]
(iii) Which tag and attributes are used to jump to a
new page.
[1]
Answers
Answered by
1
Explanation:
i) <UL> is a container tag used to create unordered list.<LI> tag is used to specify items in ordered list, unordered list and definition list.
Example:
<UL>
<LI> Apple<\LI>
<LI> Mango<\LI>
<LI>Grapes<\LI>
</UL>
ii) We can set image as background for an HTML document by including the attribute background inside <body> tag. The value of background the name of image file to be inserted.
Example:
<BODY background="School.jpg">
iii) <A> , called as anchor is used to jump to a new page. href attribute is used inside <A>, anchor tag for this purpose
Example:
<A href="www.apple.com">
Similar questions