An <iframe> tag is known as an inline frame or frame within a frame. It’s an HTML element that allows documents to be embedded within the current page. The following example illustrates how to embed a URL inside an iframe in the Blazor app.
[Index.razor]
@page "/"
<iframe width="560" height="315" src="https://blazor.net" frameborder="0" allowfullscreen></iframe>
Share with