I want to load another page using HTML iframe but Firefox blocks it due to avoid security problems. .
I've tried to chnage the "https" to "http" but it doesn't work.
The error shown by Firefox:
Firefox Can’t Open This Page To protect your security, anouar.stencila.io will not allow Firefox to display the page if another site has embedded it. To see this page, you need to open it in a new window. This is the code used:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>Reproducible Article</title> </head> <body> <!-- The header of the file --> <p> <a href="https://ojs3.josekarvalho.net/index.php/rp/article/view/87/176" target="_blank" >Link to HTML version</a > | <a href="https://ojs3.josekarvalho.net/index.php/rp/article/view/87/181" target="_blank" >Link to PDF version</a > </p> <!-- The iframe to be shown - the link to the reproducible article allowfullscreen --> <iframe src="https://anouar.stencila.io/gentsch2020/" frameborder="0" style="position: absolute; top: 80px; left: 0; width: 100%; height: 100%" scrolling="yes" title="Reproducible Article" ></iframe> </body> </html>