pixel-prompt / index.html
Hatman's picture
Create index.html
2dfc18d verified
raw
history blame
790 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Pixel Prompt</title>
<style>
/* Reset default margins and ensure full viewport coverage */
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
/* Make iframe fill the entire viewport */
iframe {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
margin: 0;
padding: 0;
overflow: hidden;
}
</style>
</head>
<body>
<iframe
src="https://production.d2iujulgl0aoba.amplifyapp.com/"
allowfullscreen
frameborder="0"
></iframe>
</body>
</html>