Spaces:
Running
Running
Update index.html
Browse files- index.html +17 -4
index.html
CHANGED
|
@@ -1,8 +1,21 @@
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html lang="en">
|
| 3 |
-
<head
|
| 4 |
-
<
|
| 5 |
-
<
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
</body>
|
| 8 |
</html>
|
|
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<title>HF Mirror App</title>
|
| 6 |
+
<style>
|
| 7 |
+
body { margin: 0; padding: 0; height: 100vh; display: flex; flex-direction: column; }
|
| 8 |
+
#notice { text-align: center; padding: 8px; font-size: 14px; background: #f0f0f0; }
|
| 9 |
+
#iframe-container { flex: 1; }
|
| 10 |
+
iframe { border: none; width: 100%; height: 100%; }
|
| 11 |
+
</style>
|
| 12 |
+
</head>
|
| 13 |
+
<body>
|
| 14 |
+
<div id="notice">
|
| 15 |
+
This site is a mirror of <a href="https://meralion.org/demo/">Official MERaLiON Demo</a>
|
| 16 |
+
</div>
|
| 17 |
+
<div id="iframe-container">
|
| 18 |
+
<iframe src="https://meralion.org/demo/"></iframe>
|
| 19 |
+
</div>
|
| 20 |
</body>
|
| 21 |
</html>
|