KnowledgeBoat Logo

Computer Applications

Write the HTML code to design the web page as shown below, considering the specifications that follow. You can write the code for given specifications.

Write the HTML code to design the web page as shown, considering the specifications that follow. You can write the code for given specifications. Computer Applications Code 165 Sample Paper Solved CBSE Class 10.

(i) Title of the page is "IIT".

(ii) Font face of heading is "Cambria".

(iii) The color of the heading of the page is "Red".

(iv) Image used as "IIT.png".

Use link as:
For IIT Bombay as bombay.html
For IIT Kanpur as kanpur.html
For IIT Madras as madras.html
For IIT Delhi as delhi.html
For IIT Roorkee as roorkee.html

HTML Advanced Features

2 Likes

Answer

<HTML>
    <HEAD>
        <TITLE>Indian Institute of Technology</TITLE>
    </HEAD>
    <BODY>
        <CENTER>
        <FONT face = "Cambria" color = "Red">
        <H1>Indian Institute of Technology</H1>
        </FONT>
        </CENTER>
        <HR>
        <IMG src = "IIT.png" alt = "IIT" align = "right">
        <P>
        The Indian Institutes of Technology (IITs) are autonomous public institutes of higher education, located in India. They are governed by the Institutes ofTechnology Act 1961 which has declared them as Institutes of national importance alongside National Institutes of Technology and lays down their powers, duties and framework for governance etc. The Institutes of Technology Act, 1961 lists twenty-three institutes.
        </P>
        <CENTER>
        <FONT face = "Cambria">
        <H2>5 Popular IIT Colleges<H2>
        </FONT>
        </CENTER>
        <TABLE align = "Center" border = "2">
            <TR>
                <TH align = "Center">Name</TH>
                <TH align = "Center">State</TH>
                <TH align = "Center">Established</TH>
            </TR>
            <TR>
                <TD><A href = "bombay.html">IIT Bombay</A></TD>
                <TD>Maharashtra</TD>
                <TD>1958</TD>
            </TR>
            <TR>
                <TD><A href = "kanpur.html">IIT Kanpur</A></TD>
                <TD>Uttar Pradesh</TD>
                <TD>1959</TD>
            </TR>
            <TR>
                <TD><A href = "madras.html">IIT Madras</A></TD>
                <TD>Tamil Nadu</TD>
                <TD>1959</TD>
            </TR>
            <TR>
                <TD><A href = "delhi.html ">IIT Delhi </A></TD>
                <TD>Delhi </TD>
                <TD>1963</TD>
            </TR>
            <TR>
                <TD><A href = "roorkee.html">IIT Roorkee</A></TD>
                <TD>Uttarakhand</TD>
                <TD>2001</TD>
            </TR>
        </TABLE>
    </BODY>
</HTML>

Answered By

2 Likes


Related Questions