CBSE Class 10 Computer Applications
Question 29 of 31
Solved Sample Paper 3 — Question 2
Back to all questions 2
Question 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.

(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>
<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>