Skip to content

Instantly share code, notes, and snippets.

@ohadcn
Created May 27, 2020 09:44
Show Gist options
  • Save ohadcn/3f3ff35b3cc3acf0d3a3808bd16bf0e5 to your computer and use it in GitHub Desktop.
Save ohadcn/3f3ff35b3cc3acf0d3a3808bd16bf0e5 to your computer and use it in GitHub Desktop.
full page iframe template to be used as transparetn redirect
<html>
<head>
<style>
html body iframe {
height: 100%;
width: 100%;
}
body {
border: 0;
margin: 0;
}
iframe {
position:fixed;
top:0;
left:0;
bottom:0;
right:0;
border:none;
margin:0;
padding:0;
overflow:hidden;
z-index:999999;
}
</style>
</head>
<body>
<iframe src="https://app.themedime.com/landing-page"
frameborder="0" seamless="seamless" />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment