用HTML写一个404错误提示网页
时间: 2023-06-10 20:06:53 浏览: 92
网页404错误提示页
5星 · 资源好评率100%
可以参考以下代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>404 Error - Page Not Found</title>
<style>
body {
background-color: #f7f7f7;
font-family: Arial, sans-serif;
}
h1 {
font-size: 3em;
color: #555;
text-align: center;
margin-top: 100px;
}
p {
font-size: 1.5em;
color: #777;
text-align: center;
margin-top: 50px;
}
button {
display: block;
margin: 50px auto 0;
padding: 10px 20px;
font-size: 1.2em;
background-color: #555;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #333;
}
</style>
</head>
<body>
<h1>404 Error - Page Not Found</h1>
<p>The page you are looking for could not be found.</p>
<button onclick="window.history.back()">Go Back</button>
</body>
</html>
```
这个页面会显示一个大标题“404 Error - Page Not Found”和一个提示信息“ The page you are looking for could not be found.”。页面中央有一个“Go Back”按钮,点击可以返回上一页。
阅读全文