当您访问一个网页时,如果遇到404错误,则表示该网页无法找到或无法访问。以下是一个简单的404页面的HTML代码:html !DOCTYPEhtml html head title404Error/title style body{ text-align:center; font-family:Arial ...
|
当您访问一个网页时,如果遇到404错误,则表示该网页无法找到或无法访问。以下是一个简单的404页面的HTML代码: html
<!DOCTYPEhtml>
<html>
<head>
<title>404Error</title>
<style>
body{
text-align:center;
font-family:Arial,sans-serif;
color:#333;
background-color:#f2f2f2;
}
.error-page{
width:600px;
height:200px;
margin:100pxauto0;
border:1pxsolid#ccc;
box-shadow:02px5pxrgba(0,0,0,0.1);
}
.error-page.title{
font-size:24px;
font-weight:bold;
margin-bottom:20px;
}
.error-page.message{
font-size:18px;
line-height:1.5;
margin-bottom:20px;
}
</style>
</head>
<body>
<divclass="error-page">
<divclass="title">404</div>
<divclass="message">Thepageyouarelookingforisnotfound.</div>
</div>
</body>
</html>这段代码将创建一个简单的404页面,其中包含一个标题和一条消息,告诉用户他们正在查找的页面无法找到。您可以根据需要自定义此页面的样式和消息。 |
