1
0
Code Issues Pull Requests Projects Releases Wiki Activity GitHub Gitee

添加iframe套壳(网站部署)

This commit is contained in:
程序员小墨 2022-07-27 00:48:24 +08:00
parent fb659eb831
commit 7bc8517cfa

27
index.html Normal file
View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>微博热搜</title>
<style>
* {
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
overflow: hidden;
}
</style>
</head>
<body>
<iframe src="html/index.html" frameborder="0" style="width: 100%; height: 100%"></iframe>
</body>
</html>