Embed air table iframe, in web viewer

I would like to embed the following iframe

I have the actual src, it is not actually *'s

I have tried using

data:text/html,<meta charset=“utf-8”> <meta name=“viewport” content=“width=device-width, initial-scale=1.0”/>

and html doctype, the webviewer ends up being blank. Hopefully someone can help me out.

What do you need a <iframe> for? Now most web servers are configured to block the display of web pages in frames. If you want to output html to WebViewer, you need this:

data:text/html,<meta charset = "utf-8"> <meta name = "viewport" content = "width = device-width, initial-scale = 1.0" /> <div>This<b>is</ b>a<span style = "color: blue">html</ span><br> label! </ div>

Does this block work for you?

2 Likes

It is an iframe from airtable, to embed a specific sheet. It will work with just a simple url, however when loading, the web viewer component will flash another color, before the sheet is displayed on screen. I am trying to load the sheet, and change the web viewers background color simultaneously, to avoid the traps background color changes. I was under the impression loading the sheet as an iframe would allow this.

In iframe style, specify background: transparent

1 Like

HOw can I embed this?