Computer Science, asked by adityavibhor2, 3 months ago

Write a HTML program to demonstrate FONT TAG and its attributes (write minimum three lines aboyt you)​

Answers

Answered by RownakShohel
1

Answer:

Fonts play a very important role in making a website more user friendly and increasing content readability. Font face and color depends entirely on the computer and browser that is being used to view your page but you can use HTML <font> tag to add style, size, and color to the text on your website. You can use a <basefont> tag to set all of your text to the same size, face, and color.

The font tag is having three attributes called size, color, and face to customize your fonts. To change any of the font attributes at any time within your webpage, simply use the <font> tag. The text that follows will remain changed until you close with the </font> tag. You can change one or all of the font attributes within one <font> tag

Answered by anunthama
2

Answer:

tont tag attributes:

basic: size, face, color

more tags: bold, italics, underline, center

Explanation:

program:

<html>

< head>

< title> program to demonstrate font tag and attributes < / title>

<\ head>

< font size ="5">

< b> this displays text in bold<\b> < br>

< i >this dispalys text in italics <\i> < br>

< u> this underlinerlines the text <\u> < br>

< center> this displays text in center of page <\center>

<\ font>

<\ body>

<\ html>

Similar questions