Common HTML Formatting for Webchat Content in Fliqr AI
You can use the following guidelines to format your text in Fliqr 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:Subheading (H2)
Sub-subheading (H3)
2. Paragraphs
Use for blocks of text. Here’s the code:3. Bold Text
Emphasize important words. Here’s the code:4. Italic Text
Use for emphasis or titles of works. Here’s the code:5. Lists (Ordered and Unordered)
Organize content into lists. Here’s the code: Unordered List:- Item 1
- Item 2
- First Item
- Second Item
6. Links (Anchors)
Create clickable links to other pages or resources. Here’s the code:7. Images
Embed images. Here’s the code:8. Divs
Create container sections to group elements together. Here’s the code:Content inside the div.
9. Span
Inline container for text or content, mainly for styling purposes. Here’s the code:10. Tables
Display data in tabular format. Here’s the code:| 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: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 |
|---|---|---|
| CSS Reset for Width | Ensures all elements stay within the parent container’s width, useful for landing pages and email in Fliqr AI. | |
| Headings (H1-H6) | Use to define the hierarchy of content. | |
| Paragraphs | Use for blocks of text. | |
| Bold Text | Emphasize important words. | |
| Italic Text | Use for emphasis or titles of works. | |
| Lists | Organize content into lists. | |
| Links (Anchors) | Create clickable links to other pages or resources. | |
| Images | Embed images. | |
| Divs | Create container sections to group elements together. | |
| Span | Inline container for text or content, mainly for styling purposes. | |
| Tables | Display data in tabular format. | |
| Buttons | Trigger actions like JavaScript events. | |
| Iframes | Embed external content like videos, websites, or widgets. | |
| Audio/Video | Embed audio or video content. | |
| Line Breaks (br) | Insert single line breaks within text content. | |
| Horizontal Rule (hr) | Add a thematic break (horizontal line) to separate sections. | |
| Blockquote | Highlight quoted text. | |
| Code | Display preformatted or inline code snippets. | |
| Preformatted Text (pre) | Preserve whitespace and formatting for code or plain text. |
