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?
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?
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