Computer Applications
Which tag(s) do we use to change the size and style (face) of the text of an HTML file viewed on a web browser? Also, explain any two attributes used with this tag.
HTML Intro
2 Likes
Answer
To change the size and style (face) of text in an HTML file, we can use the <FONT> tag. The two attributes used with <FONT> tag are:
- size — This attribute sets the size of the font of text.
- face — This attribute sets the font type of the text.
The font tag is used as follows:
<FONT FACE = "ARIAL" SIZE = "3"> Hello World </FONT>
Answered By
2 Likes