When updating the status or writing a comment, you can use the following HTML tags:
Tags | Description |
---|---|
<b> | Renders as bold text.
For example:
|
<i> | Renders as italic text.
For example:
|
<a> | Refers to an external link by using the
href
attribute.
For example:
|
<span> | Groups inline-elements in a document. |
<em> | Renders as emphasized text.
For example:
|
<strong> | Renders as strong (highlighted) text. |
<p> | Defines a paragraph. |
<ol> | Defines an ordered list. An ordered list can be numerical or alphabetical. |
<ul> | Defines an unordered or bulleted list. |
<li> | Defines a list item. The <li> tag is used in both ordered (<ol>) and unordered (<ul>)
lists.
For example:
|
<br> | Inserts a single line break. |
<img> | Defines an image in an HTML page. The <img> tag has an required attribute named
src
which specifies the URL of the image.
For example:
|
<blockquote> | Defines a long quotation. |
<q> | Defines a short quotation. |