用HTML写一个404错误提示网页
时间: 2023-06-10 10:06:54 浏览: 68
以下是一个简单的404错误提示网页的HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>404 Not Found</title>
<style>
body {
font-family: Arial, sans-serif;
font-size: 16px;
color: #333;
text-align: center;
}
h1 {
font-size: 64px;
margin-top: 100px;
}
p {
font-size: 24px;
margin-top: 20px;
}
a {
color: #007bff;
text-decoration: none;
}
</style>
</head>
<body>
<h1>404</h1>
<p>Sorry, the page you requested could not be found.</p>
<p>Please check the URL and try again, or <a href="/">go to the homepage</a>.</p>
</body>
</html>
```
你可以将其保存为一个HTML文件,然后在服务器上配置相应的404错误页面即可。
阅读全文