48 lines
958 B
Markdown
Executable File
48 lines
958 B
Markdown
Executable File
|
|
<style>
|
|
body {
|
|
font-family: 'Arial', sans-serif;
|
|
background-color: #f8f9fa;
|
|
color: #343a40;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
text-align: center;
|
|
}
|
|
.container {
|
|
max-width: 600px;
|
|
padding: 20px;
|
|
}
|
|
h1 {
|
|
font-size: 5rem;
|
|
margin: 0;
|
|
color: #6c757d;
|
|
}
|
|
h2 {
|
|
font-size: 1.5rem;
|
|
margin-top: 0;
|
|
margin-bottom: 20px;
|
|
}
|
|
p {
|
|
font-size: 1.1rem;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.emoji {
|
|
font-size: 3rem;
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="emoji">😕</div>
|
|
<h1>404</h1>
|
|
<h2>tifisht什么没有都找到www...</h2>
|
|
<p>页面不存在或已经被移除...</p>
|
|
<a href="/">返回首页</a>
|
|
</div>
|
|
</body> |