Computer Applications
Observe the following list and write the code to display it.
- Fruits
- Apple
- Banana
- Mango
- Orange
- Vegetables
- Spinach
- Cauliflower
- Beetroot
- Cereals
- Nuts
Answer
<HTML>
<HEAD>
</HEAD>
<BODY>
<UL TYPE = "DISC">
<LI>Fruits</LI>
<UL TYPE = "CIRCLE">
<LI>Apple</LI>
<LI>Banana</LI>
<LI>Mango</LI>
<LI>Orange</LI>
</UL>
<LI>Vegetables</LI>
<UL TYPE = "CIRCLE">
<LI>Spinach</LI>
<LI>Cauliflower</LI>
<LI>Beetroot</LI>
</UL>
<LI>Cereals</LI>
<LI>Nuts</LI>
</UL>
</BODY>
</HTML>
Related Questions
Explain any two controls supported by HTML form.
Explain the three laws that are formulated to stop software piracy.
Explain the various attributes of <INPUT> tag.
(a) Write the HTML code to display an inline image named pencil.jpg located at C:\ in the center of your Web page.
(b) Write the HTML command to display the A2 + B2 in your Web page.
(c) Write HTML code to insert an image named globe.jpg in the background of a Web page.