The following HTML elements are currently permitted (by default; see Special:Version for additional HTML elements supported by extensions):
For use in pairs (<tag>stuff</tag>)
<b>
<del>
<i>
<ins>
<u>
<font>
<big>
<small>
<sub>
<sup>
<h1>
<h2>
<h3>
<h4>
<h5>
<h6>
<cite>
<code>
<em>
<s>
<strike>
<strong>
<tt>
<var>
<div>
<center>
<blockquote>
For use in pairs (<tag>stuff</tag>)
<ol>
<ul>
<dl>
<table>
<caption>
<pre>
<ruby>
<rt>
<rb>
<rp>
<p>
<span>
<u>
<!-- ... -->
For use alone (<tag> or <tag/>)
<br>
<hr>
<li>
<dt>
<dd>
For use only alone (<tag> or <tag/>)
<br>
<hr>
Nestable tags
<table>
<tr>
<td>
<th>
<div>
<blockquote>
<ol>
<ul>
<dl>
<font>
<big>
<small>
<sub>
<sup>
<span>
For use alone inside a table (wiki will close)
<td>
<th>
<tr>
List tags
<ul>
<ol>
Only in a list
<li>
The following excerpt from Sanitizer.php additionally shows which attributes are allowed. For many HTML elements, more convenient wikitext code is available, see Help:Editing. On the other hand, HTML tags allow an id that can be referenced in one's user style CSS, and allows the tag to be used as link target.
It's pointless to combine the legacy tag <font>
with inline CSS; legacy browsers would ignore the CSS, while
modern browsers support <span> (see above).
Note that in most cases, one can use a more descriptive tag, for instance, <strong> to indicate an important piece of text, or <em> (subject to the same things as strong) to indicate an emphasized piece of text.
This not only draws the user's attention to the text, but can also alert those who are using nonvisual browsers or have sight impairments, etc. to the fact that that is emphasized text.
Using <span> as a link target
The standard way of providing a named anchor as an invisible target (i.e. <a name="Foo">) doesn't work (since all <a> tags are converted), and an alternative suggested by the W3C, <hN id="Foo"></hN>, produces an "[Edit]" link.
However, <span id="Foo"> does produce a target than can be the destination of a link. Note that it doesn't work everywhere; for instance, in a table, it has to be inside a cell before some browsers will jump to it properly.
<div>
<div> is a generic block container. Rules:
<div> should be followed by a newline
</div> should be preceded by a newline
</div> followed by text on the same line, two newlines and text before <div> on the same line should be avoided (because the two newlines only produce a space)
Most tags can have classes and IDs. They can be used in conjunction with stylesheets to give a piece of text a descriptive class (or unique identifier) and to refer to that in a stylesheet.
For example
<div class="tooltip">Example tooltip box</div>
Example tooltip box
Produces the box which floats on the left because tooltip class is already defined in local Mediawiki:Common.css.
Classes and IDs can also be used by Javascript code, for example see how {Link FA} works in enwiki.
Another attribute example is title, for example used with a span tag: note the hover box (should say "Who knows what it is?") over "unknown substance"
"some special items require an unknown substance to make"
HTML for "unknown substance"
<span style="border-bottom:1px dotted;" title="Who knows what it is?">unknown substance</span>
Tags with special effect
Pre
<pre> tags work as the combination of <nowiki> and the standard HTML <pre> tag: the content will preformatted, and it will not be parsed, but shown as in the wikitext source. If you want preformatted but parsed text, use a space in the beginning of the line instead. For example,
<pre>This word is <b>bold</b>.</pre>
This word is <b>bold</b>.
will render as
This word is <b>bold</b>.
This word is bold.
Comments
HTML comments in the wikitext (<!-- ... -->) will not appear in the HTML code at all.
Headers
Headers (<h1>...<h6>) will be treated in a similar way as wikicode headers:
sample header
Note that it appears in the table of contents and has an accompanying edit link. There are some minor differences though: editing such a section won't prefill the edit summary, and the browser won't jump to the beginning of the section when saving the page. Thus, you should use the wikitext equivalents instead.
Exceptions
In some pages in the MediaWiki namespace (typically the short messages like button labels) HTML does not work, and e.g. <span id=abc> produces the HTML <span id=abc> rendered by the browser as <span id=abc>. Some others are interpreted as pure HTML (thus any tag can be used, but wikicode won't be transformed to HTML).
User CSS and JS pages (see Help:User style) are interpreted as if inside a <pre> block. From MW 1.11 this also goes for sitewide CSS/JS; in earlier versions (MW 1.10 and earlier), you have to manually add /*<pre>*/ to the beginning and /*</pre>*/ to the end of those pages to avoid strange rendering.