KnowledgeBoat Logo
|

Computer Applications

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

HTML Intro

4 Likes

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.

Answered By

3 Likes


Related Questions