How to include an aspx file inside an html file?

0

In a wep with ASP I need to show the start URL of a page with the extension .HTML How can I do to include a piece of code in aspx inside an HTML file?

    
asked by Popularfan 09.08.2018 в 10:47
source

1 answer

1

You only have to include the iframe tag in your html code, and put the address you want.

<div class="embed-container">
      <iframe width="560" height="315" src="URL" frameborder="0" allowfullscreen></iframe>
</div>

CSS

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.embed-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

Extracted and tested - > link

    
answered by 09.08.2018 в 15:29