HTML tags supported in commercial marketplace offer descriptions

Use HTML tags to format your description so it's more engaging. Most tags require both an opening and closing component, as shown in this table.

Format HTML tag Example Output
Bold <b> & </b> <b>Example</b>: Free trial Example: Free trial
Italics <i> & </i> Select the <i>first</i> row. Select the first row.
New line <br> Here's line one.<br>Here's the next line. Here's line one.
Here's the next line.
Paragraphs <p> & </p> <p>Here's my first paragraph.</p>
<p>Here's my second paragraph.</p>

Here's my first paragraph.

Here's my second paragraph.

Bullets <ul> & </ul>, <li> & </li> <ul>
<li>Your bullet item</li>
<li>Your bullet item</li>
<li>Your bullet item</li>
</ul>
• Your bullet item
• Your bullet item
• Your bullet item
Numbering <ol> & </ol>, <li> & </li> <ol>
<li>Your numbered item</li>
<li>Your numbered item</li>
<li>Your numbered item</li>
</ol>
1. Your numbered item
2. Your numbered item
3. Your numbered item
New line without new number (or bullet) <ol> & </ol>, <li> & </li>, <br> <ol>
<li>add text here</li>
<li>add text here<br>add text here</li>
</ol>
1. add text here
2. add text here
    add text here
New paragraph without new number (or bullet) <ol> & </ol>, <li> & </li>, <br> <ol>
<li>add text here</li>
<li>add text here<br><br>add text here</li>
</ol>
1. add text here
2. add text here

    add text here

Use headings <h1> & </h1>, <h2> & </h2>, up to <h6> & </h6> <h1>Here's heading 1</h1>
<h2>Here's heading 2</h2>
<h3>Here's heading 3</h3>
Screenshot that shows the H1, H2, and H3 heading levels.