<p>Text in the first paragraph.</p><p>Text in the second paragraph.</p>
Text in the first paragraph.
Text in the second paragraph.
<hr />
<ul> <li>First list item</li> <li>Second list item</li> <li>...</li> <ul>
<ol> <li>First list item</li> <li>Second list item</li> <li>...</li> <ol>
<dl> <dt>First word to define</dt> <dd>Definition of the first word</dd> <dt>Second word to define</dt> <dd>Definition of the second word</dd> </dl>
<table> <caption>A caption for the table</caption> <tr> <th>First column header</th> <th>Second column header</th> </tr> <tr> <td>Line 1, column 1</td> <td>Line 1, column 2</td> </tr> <tr> <td>Line 2, column 1</td> <td>Line 2, column 2</td> </tr> </table>
First column header | Second column header |
---|---|
Line 1, column 1 | Line 1, column 2 |
Line 2, column 1 | Line 2, column 2 |
<hx>Level x title</hx> (where x is a number between 3 and 6)
<h5>Level 5 title</h5>
<pre> This code will be displayed as it is with the line breaks and the tabulations. </pre>
This code will be displayed as it is with the line breaks and the tabulations.
<blockquote> <p>This is a text which is quoted</p> </blockquote>
This is a text which is quoted
This is a <strong>bold text</strong>
This is an <em>italic text</em>
This is the first line <br />and this is the second line.
This is a link to the <a href="http://pxsystem.sourceforge.net/" title="Go to the Plume CMS site" hreflang="en">Plume CMS site</a>.
title
attribute contains the text of the tooltip when the mouse is hovering the link.
<img src="http://pxsystem.sourceforge.net/media/img/logo.png" alt="Logo of plume CMS" style="width: 100px; height: 45px;" />
alt
attribute is the alternative text when the picture couldn't be displayed.
<code>var formatField = null;</code> : that's JavaScript.
var formatField = null;
: that's JavaScript.
<q>To be or not to be...</q>
To be or not to be...
<acronym title="HyperText Markup Language">HTML</acronym>