What is the difference between base font and font tag
Answers
Answered by
203
Base font is an HTML tag that specifies the font you want to use throughout your document:
<basefont face="arial, verdana, courier" size="4" color="green">
In this example the browser of the user will select the first available font of the list to display the text.
The font tag is an older HTML tag but is no longer recommended although it still works. This is an example of its use:
<p>
<font size="3" face="verdana" color="blue">
This paragraph is in Verdana, size 3, and in blue text color.
</font>
</p>
<basefont face="arial, verdana, courier" size="4" color="green">
In this example the browser of the user will select the first available font of the list to display the text.
The font tag is an older HTML tag but is no longer recommended although it still works. This is an example of its use:
<p>
<font size="3" face="verdana" color="blue">
This paragraph is in Verdana, size 3, and in blue text color.
</font>
</p>
HardikBansal:
Thnx riya
Answered by
118
Base font is empty element.
It is an HTML tag that specifies the font you want to use throughout your document.
Font tag is an container element.
<font>only effects text upto closing i.e., </font>.
i hope the answer will help you.
It is an HTML tag that specifies the font you want to use throughout your document.
Font tag is an container element.
<font>only effects text upto closing i.e., </font>.
i hope the answer will help you.
Similar questions
English,
10 months ago
Environmental Sciences,
10 months ago
Social Sciences,
10 months ago
Math,
1 year ago