programming-examples/css/Basefont sets a default font face size and style for an entire web page.html
2019-11-15 12:59:38 +01:00

15 lines
384 B
HTML

<html>
<head>
<title>basefont element example</title>
<basefont face="verdana" size=5>
</head>
<body>
<p>Set by base font.
<font face="Courier" size=12 color="red">
For in all adversity of fortune the worst sort of<br>
misery is to have been happy.<br><br>
Boethius</font>
</p>
</body>
</html>