Computer Applications

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.

HTML Advanced Features

42 Likes

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>

Answered By

27 Likes


Related Questions