Skip to content

Instantly share code, notes, and snippets.

@CrackerHax
Created December 2, 2020 00:49
Show Gist options
  • Save CrackerHax/62038423f378d90f5f28feaec12e01d4 to your computer and use it in GitHub Desktop.
Save CrackerHax/62038423f378d90f5f28feaec12e01d4 to your computer and use it in GitHub Desktop.
iframes implementation of website
<head>
<style type="text/css">
html {
height: 100%;
}
body {
margin: 0;
height: 100%;
overflow: hidden;
}
</style>
</head>
<body>
<iframe
allowtransparency="true"
frameborder="0"
id="rf"
sandbox="allow-same-origin allow-forms allow-scripts"
scrolling="auto"
src="https://mcafeedex.com/#/erc20/?dex=whateverYourDexIDis"
style="width:100%;height:100%"
></iframe>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment