Common HTML Formatting for Webchat Content in CBB
You can use the following guidelines to format your text in Chatbot Builder AI’s webchat. Please remember to use both conversation examples and instructions to follow the show-and-tell method, which demonstrates proper formatting through clear examples alongside explanations.
This approach will help users better understand how to structure and present their content effectively in the webchat.
Important note, if you are looking for how to ensure your links in Webchat are properly linked, click here.
1. Headings (H1-H6)
Use to define the hierarchy of content. Here’s the code:
<h1>Main Heading (H1)</h1>
<h2>Subheading (H2)</h2>
<h3>Sub-subheading (H3)</h3>
Example:
Main Heading (H1)
Subheading (H2)
Sub-subheading (H3)
2. Paragraphs
Use for blocks of text. Here’s the code:
<p>This is a paragraph of text.</p>
Example:
This is a paragraph of text.
3. Bold Text
Emphasize important words. Here’s the code:
<b>This is bold text.</b>
Example:
4. Italic Text
Use for emphasis or titles of works. Here’s the code:
<i>This is italicized text.</i>
Example:
5. Lists (Ordered and Unordered)
Organize content into lists. Here’s the code:
Unordered List:
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
Ordered List:
<ol>
<li>First item</li>
<li>Second item</li>
</ol>
Example:
- Item 1
- Item 2
- First item
- Second item
6. Links (Anchors)
Create clickable links to other pages or resources. Here’s the code:
<a href="https://example.com">Click here to visit Example.com</a>
Example:
7. Images
Embed images. Here’s the code:
<img src="image.jpg" alt="Description of image">
Example:
8. Divs
Create container sections to group elements together. Here’s the code:
<div>
<h2>Section Heading</h2>
<p>Content inside the div.</p>
</div>
Example:
Section Heading
Content inside the div.
9. Span
Inline container for text or content, mainly for styling purposes. Here’s the code:
<span style="color: red;">This text is red.</span>
Example:
10. Tables
Display data in tabular format. Here’s the code:
<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
</tr>
</table>
Example:
Header 1 | Header 2 |
---|---|
Data 1 | Data 2 |
Line Spacing
Line spacing (or line-height in CSS) determines the amount of vertical space between lines of text. Here’s how to control line spacing using CSS:
<style>
p {
line-height: 1.5; /* Adjust this value to control line spacing */
}
</style>
In this example, line-height: 1.5
makes the space between lines 1.5 times the size of the font. Larger values increase spacing, and smaller values decrease it.
Example:
This paragraph has a line-height of 1.5. The space between the lines is 1.5 times the size of the font.
This paragraph has a line-height of 2. The space between the lines is double the size of the font.
Helpful Table for HTML Elements
Element | Purpose | Example |
---|---|---|
Headings (H1-H6) | Use to define the hierarchy of content. | <h1>Main Heading (H1)</h1> <h2>Subheading (H2)</h2> |
Paragraphs | Use for blocks of text. | <p>This is a paragraph of text.</p> |
Bold Text | Emphasize important words. | <b>This is bold text.</b> |
Italic Text | Use for emphasis or titles of works. | <i>This is italicized text.</i> |
Lists (Ordered and Unordered) | Organize content into lists. | <ul> <li>Item 1</li> <li>Item 2</li> </ul> |
Links (Anchors) | Create clickable links to other pages or resources. | <a href="https://example.com">Click here to visit Example.com</a> |
Images | Embed images. | <img src="image.jpg" alt="Description of image"> |
Divs | Create container sections to group elements together. | <div> <h2>Section Heading</h2> <p>Content inside the div.</p> </div> |
Span | Inline container for text or content, mainly for styling purposes. You may also use this tag to remove formatting like unwanted hyperlinks. | <span style="color: red;">This text is red.</span> You can use <span> 3.5 </span> to REMOVE unwanted formatting like hyperlinks. |
Tables | Display data in tabular format. | <table> <tr> <th>Header 1</th> <th>Header 2</th> </tr> |
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article