这是我的 HTML 代码片段。我将每个文本的字体大小指定为 14,但是当我在 Firefox 上渲染它时,它看起来太大了!有没有更好的方法来指定字体大小?
注意:我想知道如何在 HTML 中做到这一点,而不是使用 CSS。
<html>
<head>
<title>Clinics with H1N1 Flu Vaccine in Stock</title>
</head>
<body>
<!-- BEG: Patient Group table -->
<table border="2" bgcolor="yellow">
<tbody>
<tr>
<th><font size="14" face="sans-serif">Group</font></th>
<th><font size="14" face="sans-serif">Vaccine Quota</font></th>
</tr>
</tbody>
</table>
</body>
</html>