When updating the status or writing a comment, you can use the following HTML tags:
| Tags | Description |
|---|---|
| <b> | Render as bold text.
For example: <b>Bold text</b> |
| <i> | Render as italic text.
For example: <i>Italic text</i> |
| <a> | Refer to an external link by using the href attribute.
For example: <a href="http://cloud-workspaces.com">Cloud Workspace</a> |
| <span> | Group inline-elements in a document. |
| <em> | Render as emphasized text.
For example: <em>Emphasized text</em> |
| <strong> | Render as strong (highlighted) text. |
| <p> | Define a paragraph. |
| <ol> | Define an ordered list. An ordered list can be numerical or alphabetical. |
| <ul> | Define an unordered or bulleted list. |
| <li> | Define a list item. The <li> tag is used in both ordered (<ol>) and unordered (<ul>) lists.
For example: <ul> <li>Bullet 1</li> <li>Bullet 2</li> </ul> |
| <br> | Insert a single line break. |
| <img> | Define an image in an HTML page. The <img> tag has an required attribute named src which specifies the URL of the image.
For example: <img src="http://t2.gstatic.com/images?q=tbn:ANd9GcR59KE-ltJTWbaNBpB3K_uOJYMGE0HaQOx4htrm8DML6lUj90t4"/>. |
| <blockquote> | Define a long quotation. |
| <q> | Define a short quotation. |