加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
404.html 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
xiaoyanu 提交于 2023-02-13 20:01 . Add files via upload
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>404 - 页面不存在</title>
<meta name="viewport" content="width=device-width, maximum-scale=1, initial-scale=1"/>
<style>
html, body{
height: 100%;
}
body{
color: #333;
margin: auto;
padding: 1em;
display: table;
user-select: none;
box-sizing: border-box;
font: lighter 20px "微软雅黑";
}
a{
color: #3498db;
text-decoration: none;
}
h1{
margin-top: 0;
font-size: 3.5em;
}
main{
margin: 0 auto;
text-align: center;
display: table-cell;
vertical-align: middle;
}
.btn{
color: #fff;
padding: .75em 1em;
background: #3498db;
border-radius: 1.5em;
display: inline-block;
transition: opacity .3s, transform .3s;
}
.btn:hover{
transform: scale(1.1);
}
.btn:active{
opacity: .7;
}
</style>
</head>
<body>
<main>
<h1>:(</h1>
<p>嗨,你输入的网址不存在哦~</p>
<p>你可以去浏览我的
<a href="https://home.zxz.ee">主页</a>
<a href="https://zxz.ee">博客</a> ~
</p>
<a class="btn" href="https://zxz.ee">返回首页</a>
</main>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化