Content deleted Content added
→Attributes: class names for microformats |
→Permitted HTML: examples |
||
Line 7:
{{Colbegin|3}}
* [[HTML element#General|<abbr>]]
**Marks an abbreviation, and can make the full form available: <abbr title="abbreviation">abbr.</abbr>
* [[HTML element#Presentation|<b>]]
**<b>Sets font to boldface where possible</b>
* [[HTML element#Presentation|<big>]]
**<big>Increases</big> font size
* [[HTML element#Other Block Elements|<blockquote>]]
**<blockquote>A block-level quotation, for when the quotation includes block level elements, e.g. paragraphs</blockquote>
* [[HTML element#Other Inline Elements|<br>]]
**A forced<br/> line-break
* [[HTML element#Tables|<caption>]]
**<table><caption>Specifies a caption for a table</caption></table>
* [[HTML element#Other Block Elements|<center>]]
**<center>Creates a block-level center-aligned division</center> Use <code><div></code> instead
* [[HTML element#Other Inline Elements|<cite>]]
**<cite>A citation</cite>
* [[HTML element#Computer Phrase Elements|<code>]]
**<code>A code snippet</code>
* [[HTML element#Lists|<dd>]]
**<dl><dd>The definition of a term,</dd><dd>in a definition list</dd></dl>
* [[HTML element#Other Block Elements|<del>]]
**<del>Deleted text</del>
* [[HTML element#Other Block Elements|<div>]]
**<div>A block-level logical division</div>
* [[HTML element#Lists|<dl>]]
**<dl>A definition list (consisting of definition terms paired with definitions)</dl>
* [[HTML element#Lists|<dt>]]
**<dl><dt>A definition term</dt><dt>in a definition list</dt></dl>
* [[HTML element#General|<em>]]
**<em>Emphasis</em>
* [[HTML element#Presentation|<font>]]
**<font color="green" size="-1" face="Courier">Can specify the font color with the color attribute, typeface with the face attribute, and absolute or relative size with the size attribute.</font> use <nowiki><span></nowiki> instead
* [[HTML element#Basic Text|<
**<nowiki><h1>Section headings at different levels.</h1></nowiki>
* [[HTML element#Other Block Elements|<hr>]]
**<hr>A horizontal rule</hr>
* [[HTML element#Presentation|<i>]]
**<i>Sets font to italic where possible</i>
* [[HTML element#Other Block Elements|<ins>]]
**<ins>Inserted text</ins>
* [[HTML element#Lists|<li>]]
**<li>A list item in ordered (ol)</li><li>or unordered (ul) lists</li>
* [[HTML element#Lists|<ol>]]
**<ol><li>An ordered...</li><li>(enumerated) list</li></ol>
* [[HTML element#Basic Text|<p>]]
**Creates a <p>paragraph,</p> perhaps the most common block level element
* [[HTML element#Other Block Elements|<pre>]]
**a <pre>Pre-formatted text</pre> b
* [[Ruby character#Ruby markup|<rb>]]
**a <rb>rb</rb> b
* [[Ruby character#Ruby markup|<rp>]]
**a <rp>rp</rp> b
* [[Ruby character#Ruby markup|<rt>]]
**a <rt>rt</rt> b
* [[Ruby character#Ruby markup|<ruby>]]
**a <ruby>ruby</ruby> b
* [[HTML element#Presentation|<s>]]
**<s>Strike-through text</s>
* [[HTML element#Presentation|<small>]]
**<small>Decreases</small> font size
* [[HTML element#Span|<span>]]
**<span>An inline logical division</span>
* [[HTML element#Presentation|<strike>]]
**<s>Strike-through text</s>
* [[HTML element#General|<strong>]]
**
* [[HTML element#Other Inline Elements|<sub>]]
**Mark<sub>subscript</sub>
* [[HTML element#Other Inline Elements|<sup>]]
**Mark<sup>superscript</sup>
* [[HTML element#Tables|<table>]]
**<table>Identifies a table</table>
* [[HTML element#Tables|<td>]]
**<table><td>A table data cell</td></table>
* [[HTML element#Tables|<th>]]
**<table><th>A table header cell; contents are conventionally displayed bold and centered</th></table>
* [[HTML element#Tables|<tr>]]
**<table><tr>Contains a row of cells in a table</tr></table>
* [[HTML element#Presentation|<tt>]]
**<tt>Fixed-width font</tt>
* [[HTML element#Presentation|<u>]]
**<u>Underlines text</u>
* [[HTML element#Lists|<ul>]]
**<ul><li>An unordered...</li><li>(bulleted) list</li></ul>
* [[HTML element#Computer Phrase Elements|<var>]]
**<var>Variable</var>
* [[HTML element#HTML Comment|<!-- ... -->]]
**<nowiki><!--Comment--></nowiki>
{{Colend}}
|