How to display a webpage similar to html iframe?

Is there a way to display webpages? What i want to display is the html content returned from a GET request, currently in my website i’m doing this using html

<iframe
    title="Dynamic webpage"
    src="about:blank"
    srcdoc={dynamic_html_content}
    loading="lazy"
    sandbox
/>

Is there something similar thing i can do in rust with iced?

Currently, there is no way of showing webpages in iced.

Ohhhhh okay… Thanks!