HTML/CSS/Meta Tags
Версия от 09:21, 26 мая 2010; (обсуждение)
"basefont" sets a default font face, size, and style for an entire web page
<html>
<head>
<title>basefont element example</title>
<basefont face="Times, serif" size=5>
</head>
<body>
<p>Set by base font.
<font face="Courier, serif" size=5 color="blue">
new Font.
</font>
</p>
</body>
</html>