CBSE Class 10 Computer Applications
Question 28 of 31
Solved Sample Paper 3 — Question 1
Back to all questions 1
Question Write the HTML code to design the web page as shown below, considering the specifications that follow. You can write the code for the given specifications.

(i) Title of the page is "People's Public School".
(ii) Link color is "Fuchsia".
(iii) Font face for the page is "Calibri".
(iv) The color of heading of the page is "Red".
(v) Image used as school.jpg.
<HTML>
<HEAD>
<TITLE> People's Public School </TITLE>
</HEAD>
<BODY LINK = "fushia">
<FONT FACE = "CALIBRI">
<FONT COLOR = "RED">
<CENTER>
<H1> WELCOME <BR> To <BR> PEOPLE'S PUBLIC SCHOOL </H1>
</FONT>
<IMG SRC = "SCHOOL.JPG" ALT = "Image of school">
</CENTER>
<P>
Welcome to <I>People's Public School</I>. We are strongly committed
to the success of our students. Commonly requested information has
been digitized and made available on our site. We encourage your
feedback as we strive to improve our school.
</P>
</FONT>
</BODY>
</HTML>