HTML font tag
 Introduction to HTML font tag in Hindi
 Attributes of HTML font tag in Hindi
 Examples of HTML font tag in Hindi
 Commenting in HTML in Hindi
Introduction to HTML font tag
website fonts configure आ औ attractive, readable औ
structured By default आ website font family
आ website configure font family
आ font color change
Fonts configure HTML <font> tag provide tag आ
paragraph apply औ आ paragraph
particular text apply <font> tag HTML 5
include HTML 5 CSS
<font> tag 3 attributes
 size - attribute आ font size change Font size
numbers
 face - attribute font family change आ font
family inverted commas define
 color - attribute font change आ
color hex code color
Setting font size
Font size आ size attribute define
<html>
<head>
<title>Font size demo </title>
</head>
<body>
<font size="10" > HTML in Hindi</font>
</body>
</html>
Setting font family
Font family set आ face attribute
<html>
<head>
<title>font family demo</title>
</head>
<body>
<font face="Verdana">Learn HTML In Hindi</font>
</body>
</html>
Setting font color
Font color आ color attribute change
<html>
<head>
<title>font color demo </title>
</head>
<body>
<font color="red">HTML tutorial in Hindi</font>
</body>
</html>
Commenting in HTML
developer script developers
script explain necessary
developers आ script problems
Script explain आ comments HTML
comments define आ Comments interpret HTML
interpreter comments skip comments आ text
आ webpage script comment
professional habit
HTML comments tags HTML आ
unique tag provide
<!-- your comment here -->
Example
<html>
<head>
<title>commenting demo</title>
</head>
<body>
<p> Hello </p> <!-- A paragraph -->
</body>
</html>
Html font tag in Hindi

Html font tag in Hindi

  • 1.
    HTML font tag Introduction to HTML font tag in Hindi  Attributes of HTML font tag in Hindi  Examples of HTML font tag in Hindi  Commenting in HTML in Hindi Introduction to HTML font tag website fonts configure आ औ attractive, readable औ structured By default आ website font family आ website configure font family आ font color change Fonts configure HTML <font> tag provide tag आ paragraph apply औ आ paragraph particular text apply <font> tag HTML 5 include HTML 5 CSS <font> tag 3 attributes  size - attribute आ font size change Font size numbers  face - attribute font family change आ font family inverted commas define  color - attribute font change आ color hex code color Setting font size Font size आ size attribute define
  • 2.
    <html> <head> <title>Font size demo</title> </head> <body> <font size="10" > HTML in Hindi</font> </body> </html> Setting font family Font family set आ face attribute <html> <head> <title>font family demo</title> </head> <body> <font face="Verdana">Learn HTML In Hindi</font> </body> </html> Setting font color Font color आ color attribute change <html> <head> <title>font color demo </title> </head> <body> <font color="red">HTML tutorial in Hindi</font> </body> </html>
  • 3.
    Commenting in HTML developerscript developers script explain necessary developers आ script problems Script explain आ comments HTML comments define आ Comments interpret HTML interpreter comments skip comments आ text आ webpage script comment professional habit HTML comments tags HTML आ unique tag provide <!-- your comment here --> Example <html> <head> <title>commenting demo</title> </head> <body> <p> Hello </p> <!-- A paragraph --> </body> </html>