I want to show data from airtable iframe embed

Airtable - Grid view

how can I do?

1 Like

You need to include the iframe tag in a HTML file. and then use this file as the URL to a Web Viewer component

Example:

<!DOCTYPE html>
<html>
    <head>
        <meta name="viewport" content="initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,width=device-width, user-scalable=no" />
        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    </head>
<body>

{{ Your Embed code goes here }}

</body>
</html>

Thank you for your help.