KnowledgeBoat Logo
|

Computer Applications

Give the HTML code to display following output:

Give the HTML code to display output. Computer Applications Code 165 Sample Paper Solved CBSE Class 10.

HTML Advanced Features

8 Likes

Answer

<HTML>
    <HEAD>
        <TITLE>Gurudev Library</TITLE>
    </HEAD>
    <BODY>
        <B>Gurudev Library</B>
        <UL type = "disc"> 
            <LI>Academic</LI>
            <OL type = "i">
            <LI> CBSE Board</LI>
            <LI> UP Board</LI>
            </OL>
            <LI>Vacancy</LI>
            <UL type = "square">
                <LI>UPSC</LI>
                <OL type = "a">
                    <LI>SSC CGL</LI>
                    <LI> Banking</LI>
                    <OL type ="1">
                        <LI> Clerk</LI>
                        <LI> PO</LI>
                    </OL>
                </OL>
            </UL>
        </UL>
    </BODY>
</HTML>

Answered By

4 Likes


Related Questions