Computer Science, asked by lucky4563, 1 year ago

Write the syntax of<font> tag and it's three attributes

Answers

Answered by kurokiri67
1
When writing in HTML, the <font> tag was an inline element used to change certain qualities of a block of text on a web page. It was useful for changing a font's size, face, and color.

Example code

<font size="4" color="Green">Words and things.</font>
<font size="2" color="#c1c1c3">Text that looks different.</font>
<font face="Arial" color="Orange">I am a sentence!</font>

Attributes:-
color - Designates the color of text
face - Designates the look of text
size - Designates the size of text
Similar questions