FONT TAGS
We use Font tag in a HTML document because we change font style, color and size in a webpage.
We use <FONT> tag and use attribute to change any type of style in a font. Attribute is <FONT FACE="ARIAL"> we use face attribute . In this result we writting total article and then End </FONT> tag. We use end purpose tag is </>
TAGS
Tag :-
<font> (Has a end Tag) </font>
Attribute :-
Attribute, size and color
Code example :-
<font face="lucida handwriting" color="green" size="8">
This is a font tag </font>
Code - <html>
<head>
<title> Font style</title>
</head>
<body>
<font face="lucida handwriting" size="8" color="red">Font</font>
<br>
<font face="arial" size="5" color="green">Style</font>
</body>
</html>
Output :-
<head>
<title> Font style</title>
</head>
<body>
<font face="lucida handwriting" size="8" color="red">Font</font>
<br>
<font face="arial" size="5" color="green">Style</font>
</body>
</html>
Output :-
video :-
0 comments: