CBSE Class 10 Computer Applications
Question 147 of 176
HTML I — Basic HTML Elements — Question 20
Back to all questions 20
Question Question 17
Give the coding for giving the heading 'PACE Computer Education' of <H1> tag, font style as Comic Sans MS, text color as blue. Body text color as red, background as green, alignment as center, font style of body text as Brush script, size = 15. The text for body is as follows :
Education is the
ability to listen to almost
anything without
losing your temper
or your
self confidence.
And so is Democracy and Maturity too.
<BODY BGCOLOR = "GREEN" TEXT = "RED">
<H1>
<FONT FACE = "COMIC SANS MS" COLOR = "BLUE">PACE Computer Education</FONT>
</H1>
<P ALIGN = "CENTER">
<FONT FACE = "BRUSH SCRIPT" SIZE = "15">
Education is the
ability to listen to almost
anything without
losing your temper
or your
self confidence.
And so is Democracy and Maturity too.
</FONT>
</P>