HTML
#只有 Internet Explorer 支援
定義與用法 ( 建議學習:html教學 )
#
標準屬性
id, class, title, style, dir, lang, xml:lang
實例
#規定頁面上的預設字體顏色和字號:
<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的