mirror-test / index.html
YingxuHe's picture
Update index.html
ee05dd0 verified
<!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>