The Stack Overflow site engine, as you know, uses Markdown for questions and answers. Per the Markdown spec, you are allowed to freely intermix HTML and Markdown tags.
However, we do not allow all HTML tags, as that would be an XSS paradise. To that end, the Stack Overflow engine allows only the following safe, whitelisted subset of HTML tags:
<a>
<b>
<blockquote>
<code>
<del>
<dd>
<dl>
<dt>
<em>
<h1>, <h2>, <h3>
<i>
<img>
<kbd>
<li>
<ol>
<p>
<pre>
<s>
<sup>
<sub>
<strong>
<strike>
<ul>
<br/>
<hr/>
The following attributes are allowed on the <img> tag:
src=""
width="" (up to 999)
height="" (up to 999)
alt=""
title=""
The following attributes are allowed on the <a> tag:
href=""
title=""
HTML tags not on this list are stripped from the output. They may render in the client preview but they will always be removed on the server.You must enter the tags exactly as shown. Any deviation from this list (adding extra spaces, using single quote or no quotes, etc) means the tag will be stripped.
We do not and will not allow table tags -- sorry. This is intentional and by design. If you need a quick and dirty "table", use <pre> and ASCII layout.
However, if there's some other (safe!) tag you think we should allow, I am open to suggestions.

<img alt="foo" src="http://bar.com/baz.jpg">won't work, but<img src="http://bar.com/baz.jpg" alt="foo">will. – Anton Geraschenko Nov 12 at 17:58