Spaces:
Runtime error
Runtime error
Ramesh-vani
commited on
Commit
·
e0e311a
1
Parent(s):
76b2b8c
Create index.html
Browse files- index.html +24 -0
index.html
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Full Isolated Iframe</title>
|
7 |
+
<style>
|
8 |
+
body, html {
|
9 |
+
margin: 0;
|
10 |
+
padding: 0;
|
11 |
+
height: 100%;
|
12 |
+
overflow: hidden;
|
13 |
+
}
|
14 |
+
iframe {
|
15 |
+
border: none;
|
16 |
+
width: 100%;
|
17 |
+
height: 100%;
|
18 |
+
}
|
19 |
+
</style>
|
20 |
+
</head>
|
21 |
+
<body>
|
22 |
+
<iframe src="https://www.example.com"></iframe>
|
23 |
+
</body>
|
24 |
+
</html>
|