CBSE Class 10 Computer Applications Question 21 of 176

HTML I — Basic HTML Elements — Question 19

Back to all questions
19
Question

Question 19

If the HTML code looks like :

<font face="Arial" size="3"
    color ="#000000">Welcome</font>

then the text would look like:

  1. Welcome
  2. Welcome
  3. Welcome
  4. Welcome
Answer

Welcome
(Option 3)

Reason — face, size and color attributes of <FONT> tag set the font, size and colour of the text respectively. Thus, the text (Welcome) will be displayed in "Arial" font of size "3" and its colour will be "#000000" i.e., black.