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 the given specifications. Computer Applications Code 165 Sample Paper Solved CBSE Class 10.

(i) Title of the page is "Top 5 Films of 2010".

(ii) Font face for the page is "Calibri".

(iii) Link color is "Turquoise".

(iv) The color of heading of the page is "Green".

(v) Image used is bollywood.jpg.

HTML Advanced Features

8 Likes

Answer

<HTML>
    <HEAD>
        <TITLE> Top 5 Films of 2010 </TITLE>
    </HEAD>
    <BODY LINK = "TURQUOISE">
        <FONT FACE = "CALIBRI">
        <CENTER>
        <H1> 
        <FONT COLOR = "GREEN"> Top 5 Films of 2010 </FONT></H1>
        </CENTER>
        <B>
        <P>
        This website is a gateway to <U>film reviews.</U> Following is a list of the top 5 films running successfully in cinema halls in June 2010. 
        </P>
        </B>
        <IMG SRC = "BOLLYWOOD.JPG" ALT = "BOLLYWOOD IMAGE" ALIGN = "RIGHT">
        <B>
        <OL TYPE = "1">
            <LI>Rajneeti</LI>
            <LI>Prince of Persia</LI>
            <LI>House Full</LI>
            <LI>Iron Man 2</LI>
            <LI>Kites</LI>
        </OL>
        </B>
        <A HREF = "LIST_OF_MOVIES.HTML">
        <U>Click here to see the list of upcoming movies</U>
        </A>
    </BODY>
</HTML>

Answered By

6 Likes


Related Questions