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