话不多说,直径上代码,将代码复制到网站根目录404.html文件中,直径保存就OK。
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 页面未找到</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
text-align: center;
padding: 50px;
}
h1 {
font-size: 50px;
margin: 0;
}
h2 {
font-size: 30px;
margin: 20px 0;
}
p {
font-size: 18px;
margin: 10px 0;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
border: 2px dashed #ccc;
border-radius: 10px;
background-color: #fff;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.button {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
}
.button:hover {
background-color: #0056b3;
}
img {
width: 100%;
max-width: 300px;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<h2>哎呀!你迷路了。</h2>
<p>我们找不到您要的页面,但没关系,世界上还有很多有趣的事情等着你去发现!</p >
<img src="https://wp.66zyz.com/view.php/76141bf144905da40c232f7feccbcae6.png" alt="" />
<p>在这里,你可以试试:</p >
<ul>
<li>检查一下网址是否拼写正确。</li>
<li>使用导航菜单,找到你想要的内容。</li>
<li>或者...你可以去喝杯咖啡,回来再试试!</li>
</ul>
<a class="button" href="https://66zyz.com/">返回首页</a >
</div>
</body>
</html>