5.3.27 remark : format as remark

A remark tag can be used to make a paragraph stand out. The remark is equivalent to the p tag, but it’s contents is formatted in a way that makes it stand out from the rest of the text.

Note that any text before or after the remark tag must be enclosed in paragraph (p) tags.

Example:

<p>Normal text.</p>  
<remark>  
This text will stand out.  
</remark>  
<p>Again normal text.</p>

Will be formatted as

Normal text.

Remark This text will stand out.

Again normal text.

See also: p (207), code (169), pre (211)