Created
May 27, 2020 09:44
-
-
Save ohadcn/3f3ff35b3cc3acf0d3a3808bd16bf0e5 to your computer and use it in GitHub Desktop.
full page iframe template to be used as transparetn redirect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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