CBSE Class 10 Computer Applications Question 26 of 31

Solved 2024 Sample Question Paper CBSE Class 10 Computer Applications (165) — Question 4

Back to all questions
4
Question

Question 22(ii)

Write HTML code to design the content of the web page in the form of lists as shown below:

Write HTML code to design the content of the web page in the form of lists. CBSE 2024 Computer Applications Code 165 Class 10 Sample Question Paper Solved.
Answer
<HTML>
<BODY>
<P> STREAM WISE CAREER OPTIONS </P> 
<UL TYPE = "SQUARE">
<LI> Science 
    <OL TYPE = "a">
    <LI> Engineering </LI>
    <LI> Medical </LI>
    <LI> Research </LI>
    </OL>
</LI>
<LI> Commerce </LI>
<LI>Humanities </LI>
</UL>
</BODY>
</HTML>