CBSE Class 10 Computer Applications Question 67 of 79

Basic HTML Elements — Question 10

Back to all questions
10
Question

Question 10

Write an HTML code to create the following bulleted list.

  • MS Word
  • MS Excel
  • MS PowerPoint
  • MS Access
Answer
<HTML>
<BODY>
<UL TYPE = "CIRCLE">
<LI>MS Word</LI>
<LI>MS Excel</LI>
<LI>MS PowerPoint</LI>
<LI>MS Access</LI>
</UL>
</BODY>
</HTML>