mirror of
https://github.com/grey-cat-1908/website.git
synced 2024-11-11 18:57:26 +03:00
Update 404.html
This commit is contained in:
parent
d09c5744a8
commit
235b88fddb
1 changed files with 51 additions and 9 deletions
|
@ -3,25 +3,67 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Page Not Found</title>
|
<link rel="icon" href="https://avatars.githubusercontent.com/u/61203964">
|
||||||
|
<title>404 Not Found</title>
|
||||||
<style>
|
<style>
|
||||||
|
@font-face {
|
||||||
|
src: url("./fonts/Onest-Medium.ttf");
|
||||||
|
font-family: "Onest";
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: Arial, sans-serif;
|
background-color: #f0f0f0;
|
||||||
text-align: center;
|
color: #333;
|
||||||
|
font-family: Onest, sans-serif;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 50px;
|
padding: 0;
|
||||||
background-color: #f8f8f8;
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
height: 100vh;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 50px;
|
font-size: 72px;
|
||||||
|
margin: 0;
|
||||||
|
color: #f63;
|
||||||
}
|
}
|
||||||
p {
|
p {
|
||||||
font-size: 20px;
|
font-size: 24px;
|
||||||
|
margin: 20px 0;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #f63;
|
||||||
|
text-decoration: none;
|
||||||
|
font-weight: bold;
|
||||||
|
transition: color 0.3s;
|
||||||
|
}
|
||||||
|
.hashtags {
|
||||||
|
font-size: 18px;
|
||||||
|
color: #555;
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
.hashtags span {
|
||||||
|
background-color: #e0e0e0;
|
||||||
|
padding: 5px 10px;
|
||||||
|
border-radius: 20px;
|
||||||
|
margin: 5px 5px;
|
||||||
|
display: inline-block;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div class="container">
|
||||||
<h1>404</h1>
|
<h1>404</h1>
|
||||||
<p>The page you are looking for does not exist.</p>
|
<p>Oops! The page you're looking for doesn't exist.</p>
|
||||||
|
<p><a href="/">Return to Home</a></p>
|
||||||
|
<div class="hashtags">
|
||||||
|
<span>#ReallySimple</span>
|
||||||
|
<span>#404Page</span>
|
||||||
|
<span>#LikeAlways</span>
|
||||||
|
<span>#WhyNoCF404Page</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue