HTML Text Fonts Code For Website - Learn About Website | DaddyFile

0

HTML Fonts Explain

The font-family property defines the font to be used for an HTML element.



Html Code:

<!DOCTYPE html>
<html>
<body>

<h1 style="font-family:verdana;">This is a heading</h1>
<p style="font-family:courier;">This is a paragraph.</p>

</body>
</html>




Html Code Result:

This is a heading

This is a paragraph.

Post a Comment

 
Top