Spaces:
Running
Running
Create index.html
Browse files- index.html +36 -0
index.html
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>Pixel Prompt</title>
|
5 |
+
<style>
|
6 |
+
/* Reset default margins and ensure full viewport coverage */
|
7 |
+
html, body {
|
8 |
+
margin: 0;
|
9 |
+
padding: 0;
|
10 |
+
width: 100%;
|
11 |
+
height: 100%;
|
12 |
+
overflow: hidden;
|
13 |
+
}
|
14 |
+
|
15 |
+
/* Make iframe fill the entire viewport */
|
16 |
+
iframe {
|
17 |
+
position: fixed;
|
18 |
+
top: 0;
|
19 |
+
left: 0;
|
20 |
+
width: 100%;
|
21 |
+
height: 100%;
|
22 |
+
border: none;
|
23 |
+
margin: 0;
|
24 |
+
padding: 0;
|
25 |
+
overflow: hidden;
|
26 |
+
}
|
27 |
+
</style>
|
28 |
+
</head>
|
29 |
+
<body>
|
30 |
+
<iframe
|
31 |
+
src="https://production.d2iujulgl0aoba.amplifyapp.com/"
|
32 |
+
allowfullscreen
|
33 |
+
frameborder="0"
|
34 |
+
></iframe>
|
35 |
+
</body>
|
36 |
+
</html>
|