HTML
只有 Internet Explorer 支持
定义和用法 ( 推荐学习:html教程 )
HTML 与 XHTML 之间的差异
在 HTML 4.01 中,不赞成使用 basefont 元素;在 XHTML 1.0 Strict DTD 中,不支持 basefont 元素。
实例
规定页面上的默认字体颜色和字号:
<html> <head> <basefont color="red" size="5" /> </head> <body> <h1>This is a header</h1> <p>This is a paragraph</p> <p> 在 HTML 4.01 中,不赞成使用 basefont 元素;在 XHTML 1.0 Strict DTD 中,不支持 basefont 元素。 </p> </body> </html>
以上是HTML的<basefont>标签的详细内容。更多信息请关注PHP中文网其他相关文章!