predatortoabuse's picture
Update index.html
1cd3cbd verified
raw
history blame
No virus
817 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fullscreen Iframe</title>
<style>
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.iframe-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.iframe-container iframe {
width: 100%;
height: 100%;
border: 0;
}
</style>
</head>
<body>
<div class="iframe-container">
<iframe src="https://corcelio-mobius.hf.space" frameborder="0" allowfullscreen></iframe>
</div>
</body>
</html>