I have a website that shows a landing page and has a call to action button, let's say "download"
I want that when download is clicked the content of the url is loaded entirely on my page, in an iframe, how can I do this? I've been searching but not finding exactly this.
what I want to achieve is that the external link loads entirely on my website.
thank you.
Edit:
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<base href=".">
<title>Message</title>
<meta name="robots" content="noindex,nofollow">
<style type="text/css"> body{margin:0;padding:0;background:#eee}.container{top:30%;left:50%;width:30em;margin-top:-9em;margin-left:-15em;border:1px solid #7498b8;background-color:#9ec6ea;position:fixed;padding:5px;font-family:arial;border-radius:2px}.title{color:#162c41;text-align:center;padding:10px 0;position:relative}.close{position:absolute;top:-6px;right:1px;background:#b90909;height:30px;width:40px;color:#fff;line-height:30px;vertical-align:middle;border-radius:0 0 2px 2px}.close a{color:white;text-decoration:none}.inner{border:1px solid #8fa5bc;border-bottom:0;background:#FFF;min-height:150px;text-align:left;padding:20px}.inner img{float:left;margin:0 10px 0 0;width:25px;height:25px}.h1{border-bottom:1px solid #f1f1f1;padding-bottom:10px;height:25px;line-height:25px;vertical-align:middle}.details{margin:10px 0 10px;border-bottom:1px solid #f1f1f1;padding-bottom:10px}.bottom{background:#f0f0f0;border:1px solid #a0a0a0;height:36px;padding:10px;text-align:right}a.secure,a.secureclose{float:right;text-align:center;height:25px;width:110px;border:1px solid #adadad;background:#e7e7e7;color:#333;text-decoration:none;margin-top:5px;line-height:25px;vertical-align:middle;font-size:20px;box-shadow:1px 1px 1px #f8f8f8}a.secureclose{width:85px;border:1px solid #678db4;margin-left:10px;box-shadow:inset 1px 1px 1px #c9f9ff}a.secure:hover{background:#e1e1e1} </style>
</head>
<body>
<div class="container">
<div class="title">title<div class="close">x</div>
</div>
<div class="bottom"><a href="www.bing.com" id="burl" rel="noreferrer" target="_blank" class="secure"><b>download</b></a> </div>
</div>
</body></html>