UK[beɪs] 美[bes]

n. Base; basis; based on; base number (such as decimal 10 and binary 2)

vt. Based on; build... on ;Put... on or set up (base); put... on the base (or pedestal)

adj. despicable; low-level; cheap, inferior; commoner

Third person singular: bases Plural: bases Present participle: basing Past tense: based Past participle: based Comparative: baser Superlative: basest

html basefont tag syntax

What does the basefont tag mean?

Function: Define the base font. If you want to change the font size, just add the or - number directly after it.

Description: This tag can define the default font color, font size and font family for all text in the document.

Note: In HTML 4.01, the basefont element is deprecated; in XHTML 1.0 Strict DTD, the basefont element is not supported.

html basefont tag example

<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>

Run instance »

Click the "Run instance" button to view the online instance