用HTML写一个404报错页面
时间: 2023-07-15 10:15:43 浏览: 88
可以参考以下代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>404 Not Found</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
.container {
margin: 0 auto;
max-width: 800px;
text-align: center;
}
h1 {
font-size: 6em;
color: #333;
margin-top: 100px;
}
p {
font-size: 1.2em;
color: #666;
}
a {
color: #007bff;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<p>The page you are looking for does not exist.</p>
<p>Please check the URL and try again, or go back to the <a href="/">homepage</a>.</p>
</div>
</body>
</html>
```
在浏览器中打开这个文件,就可以看到一个简单的404报错页面。你可以根据需要自定义样式和内容。
阅读全文