用HTML写一个404报错页面
时间: 2023-07-15 21:15:47 浏览: 78
可以参考以下示例代码:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404 Not Found</title>
<style>
body {
background-color: #f1f1f1;
font-family: sans-serif;
}
h1 {
text-align: center;
margin-top: 100px;
}
p {
text-align: center;
font-size: 18px;
margin-top: 50px;
}
a {
display: block;
text-align: center;
margin-top: 20px;
}
</style>
</head>
<body>
<h1>404 Not Found</h1>
<p>The page you requested could not be found.</p>
<a href="/">Go back to homepage</a>
</body>
</html>
```
这个页面会显示一个大标题 "404 Not Found",一段文本说明页面没有找到,以及一个链接返回到网站主页。你可以根据需要自定义样式和文本。
阅读全文