You can make a conversation transcript or audio available to view and listen to an existing website by embedding it on your site or blog.
- Create a public shared link to a conversation.
- Insert an iframe within the HTML of your site and use the public shared link.
- Use the following attributes:
scrolling = true
: Show the scrollbar within the frame.width="600"
: Specifies the width of an <iframe>. The default width is 300 pixels.height="600px"
: Specifies the height of an <iframe>. The default height is 150 pixels.frameborder="0"
: Display a border around the frame.style="box-shadow: -1px 3px 28px -4px rgba(0,0,0,0.76);"
: Adds a shadow to the frame.
For example:
<iframe src="https://otter.ai/s/5wziAxGsT-GJvV-meDazAZ1"
width="600px"
height="600px"
frameborder="0"
style="box-shadow: -1px 3px 28px -4px rgba(0,0,0,0.76);"
scrolling="true">
</iframe>