写一个404的网页html
时间: 2023-08-05 14:05:34 浏览: 85
以下是一个简单的404错误页面的HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>404 Not Found</title>
</head>
<body>
<h1>404 Not Found</h1>
<p>The page you are looking for could not be found.</p>
</body>
</html>
```
你可以将这段代码保存为一个名为 "404.html" 的文件,然后将它上传到你的网站的根目录中。当访问了一个不存在的页面时,服务器会自动显示这个错误页面。
相关问题
用HTML写一个404错误提示网页
可以参考以下代码:
```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”按钮,点击可以返回上一页。
python写一个简单的网页
在Python中,你可以使用内置的`http.server`模块创建一个基本的HTTP服务器,并通过简单地编写HTML来创建一个静态网页。以下是一个简单的例子:
```python
from http.server import BaseHTTPRequestHandler, HTTPServer
# 创建一个自定义的请求处理器
class SimpleHTTPRequestHandler(BaseHTTPRequestHandler):
def do_GET(self):
if self.path == '/':
# 如果请求的是根目录,发送index.html文件
self.send_response(200)
self.end_headers()
with open('index.html', 'r') as f:
self.wfile.write(f.read().encode())
else:
# 如果请求的不是index.html,返回404错误
self.send_error(404)
# 设置服务器端口和处理程序
PORT = 8000
server_address = ('', PORT)
httpd = HTTPServer(server_address, SimpleHTTPRequestHandler)
print(f'Server running at http://localhost:{PORT}')
# 开始监听请求
httpd.serve_forever()
```
在这个例子中,你需要创建一个名为`index.html`的文件,内容可以是HTML结构。例如:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Simple Web Page</title>
</head>
<body>
<h1>Welcome to my simple web page!</h1>
</body>
</html>
```
保存这些代码并运行脚本,然后打开浏览器访问`http://localhost:8000`,你应该能看到你的网页。
阅读全文