Loading two Iframes is failing - html

I am trying to load two iframes one on top of the other and i only see the top one visible
<iframe src ="http://www.videoapt.com/tabid/53/VPID/119/VP/AMLI7thStreetStation/Default.aspx" width="700" height="500" frameborder="0" scrolling="auto"><br>
<iframe src ="http://www.circlepix.com/home3/LWAPPH" width="700" height="500" frameborder="0" scrolling="auto">

You have to close the iframe.
<iframe></iframe>
It's not a self-closing element.

Related

html <base> affecting Iframe "src" tag with external link

I have a base url <base href="https://www.example.com/" target="_self"> for my page's relative links.
The problem is, it's affecting the src="" of an external iframe am trying to embed.
​<iframe width="600" height="300" frameborder="0" src="​https://external-example.to/something/widget?width=600&height=300&note=​"></iframe>
Other iframes loading content from the my domain https://www.example.com/ are working just fine.
Forexample <iframe width="600" height="300" frameborder="0" src="​https://www.example.com/something/some-thing"></iframe> is not affected.
The base url if forcing it's value on the src value of the external iframe like this
​<iframe width="600" height="300" frameborder="0" src="​https://www.example.com/​https://external-example.to/something/widget?width=600&height=300&note=​"></iframe>
How can I avoid this https://www.example.com/​https://external-example.to/something/widget?width=600&height=300&note=​ from happening?
Thanks.

How to code this html on wordpress

Need some help to code this i add a sample shot of the error, i have tried to add the frame and it doesn't work for me.
<iframe allowfullscreen="" frameborder="0"height="300"src="http://publicidad.dicom.gob.do/banners/medios/blogs/espaciodeprensa/index.html" width="700" scrolling="no"></iframe>
error show
You got no spaces between your attributes. Try this:
<iframe allowfullscreen="" frameborder="0" height="300" src="http://publicidad.dicom.gob.do/banners/medios/blogs/espaciodeprensa/index.html" width="700" scrolling="no"></iframe>
Use to text widget than to paste iframe code in text widget.

iframe doesn't embed, just pops up with open with/save as box. Tried everything

All I want to do is embed this banner, I have tried every possible combination and googled as much as I can. Here are my current live attempts.
Non wordpress - http://mch.co.uk/centrallondon/iframetest.shtml
With this code:
<iframe
src="http://www.mch.co.uk/centrallondon/immac.html"
width="445"
height="85"
scrolling="no"
frameborder="0" ></iframe>
Wordpress - http://mch.co.uk/centrallondon/iframe-test.shtml
With this code:
[iframe
width="640"
height="480"
src="http://www.mch.co.uk/centrallondon/immac.html"]
<iframe
src="http://www.mch.co.uk/centrallondon/immac.html"
width="445"
height="85"
frameborder="0"
scrolling="no">
</iframe>
The wordpress one includes a shortcode from an iframe embedding plugin.

Can't put website in iframe

I'm trying to put g2a.com website in an iframe, but it doesn't work. When I insert code below to my html file g2a website, it is opening full screen, and I have g2a.com in address bar. It is working with any other website I have tried so it has to be something specific about g2a.com. Anyone have an idea how to make it work with iframe?
<iframe src="https://www.g2a.com/" width="50%" height="50%" frameborder="0" marginheight="0" marginwidth="0">
<p>Click here! (Your browser does not support iframes)</p>
</iframe>
g2a.com uses a framebraker, to avoid using this site in an iframe..
you can still add a
sandbox="allow-scripts"
in your example:
<iframe src="https://www.g2a.com/" sandbox="allow-scripts" width="50%" height="50%" frameborder="0" marginheight="0" marginwidth="0">
<p>Click here! (Your browser does not support iframes)</p>
</iframe>
to your iframe, which works in most newer browsers. This prohibits that the website in the frame can affect the main window.

How to remove bubble from Google Map

I've done some searching and it seems that you need to remove the iwloc part of the path, but I can't find it anywhere!
<iframe width="725" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.co.uk/maps?f=q&source=s_q&hl=en&geocode=&q=ightham&aq=&sll=51.223215,0.33516&sspn=0.048003,0.132093&gl=uk&ie=UTF8&hq=&hnear=Ightham,+Kent,+United+Kingdom&t=m&z=14&ll=51.287109,0.286445&output=embed"></iframe>
I think &iwloc=near at the end is what you need. This example also shows that you really just need the postcode and the magnification i.e z=10
<iframe width="400" scrolling="no" height="300" frameborder="0" src="https://maps.google.co.uk/maps?hl=en&q=so21+1aj&z=10&output=embed&iwloc=near" marginwidth="0" marginheight="0"></iframe>
Check this live example
Remove the:
&q=ightham
That removes the bubble for me:
https://maps.google.co.uk/maps?f=q&source=s_q&hl=en&geocode=&aq=&sll=51.223215,0.33516&sspn=0.048003,0.132093&gl=uk&ie=UTF8&hq=&hnear=Ightham,+Kent,+United+Kingdom&t=m&z=14&ll=51.287109,0.286445&output=embed