YingxuHe commited on
Commit
ee05dd0
·
verified ·
1 Parent(s): 905be09

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +17 -4
index.html CHANGED
@@ -1,8 +1,21 @@
1
  <!DOCTYPE html>
2
  <html lang="en">
3
- <head><meta charset="UTF-8"><title>My Mirror App</title></head>
4
- <body style="margin:0;padding:0;height:100vh;">
5
- <iframe src="https://meralion.org/demo"
6
- style="border:none;width:100%;height:100vh;"></iframe>
 
 
 
 
 
 
 
 
 
 
 
 
 
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>