All Collections
Other extensions
Convert HTML in Airtable to Webpage
How do I display an image from an attachment field in the HTML to a webpage extension?
How do I display an image from an attachment field in the HTML to a webpage extension?
Updated over a week ago

You would first need to extract the image attachment URLs into a separate field. You can this extension to achieve that. Then you would pass that direct URL in an HTML image tag. Example:

<img src="{URL}" >

Please note that this tag can only handle a single image. (e.g. multiple comma-separated URLs are not supported.)

Did this answer your question?