Skip to content

noObsoleteTags (HTML)

biome.json
{
"linter": {
"rules": {
"nursery": {
"noObsoleteTags": "error"
}
}
}
}

Disallow obsolete HTML elements.

Obsolete elements are no longer part of conforming HTML. Use standard HTML elements for structure and semantics, and CSS for presentation.

This rule disallows acronym, applet, basefont, bgsound, big, blink, center, dir, font, frame, frameset, isindex, keygen, listing, marquee, menuitem, multicol, nextid, nobr, noembed, noframes, plaintext, rb, rtc, spacer, strike, tt, and xmp.

Tag names are case-insensitive in HTML files. Custom components in template languages, such as <Font />, are not HTML elements and are ignored.

<font color="red">Warning</font>
code-block.html:1:2 lint/nursery/noObsoleteTags ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

The font element is obsolete.

> 1 │ <font color="red">Warning</font>
^^^^
2 │

Obsolete elements are no longer part of conforming HTML.

Use standard HTML elements for structure and semantics, and CSS for presentation.

This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information.

<acronym title="World Wide Web">WWW</acronym>
code-block.html:1:2 lint/nursery/noObsoleteTags ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

The acronym element is obsolete.

> 1 │ <acronym title="World Wide Web">WWW</acronym>
^^^^^^^
2 │

Obsolete elements are no longer part of conforming HTML.

Use standard HTML elements for structure and semantics, and CSS for presentation.

This rule belongs to the nursery group, which means it is not yet stable and may change in the future. Visit https://biomejs.dev/linter/#nursery for more information.

<span class="warning">Warning</span>
<abbr title="World Wide Web">WWW</abbr>