-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
49 lines (49 loc) · 1.19 KB
/
Copy path404.html
File metadata and controls
49 lines (49 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404 Not Found</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
background: linear-gradient(135deg, #ff5858 0%, #f09819 100%);
color: #fff;
font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
}
.container {
background: rgba(0,0,0,0.3);
padding: 2rem 3rem;
border-radius: 1.5rem;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
text-align: center;
}
h1 {
font-size: 3rem;
margin-bottom: 0.5rem;
letter-spacing: 2px;
}
p {
font-size: 1.3rem;
margin-top: 0;
}
.rust-logo {
width: 80px;
margin-bottom: 1rem;
filter: grayscale(1) brightness(0.7);
}
</style>
</head>
<body>
<div class="container">
<img class="rust-logo" src="https://www.rust-lang.org/static/images/rust-logo-blk.svg" alt="Rust Logo">
<h1>404 Not Found</h1>
<p>Sorry, the page you are looking for does not exist.</p>
</div>
</body>
</html>