-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patherror.html
More file actions
48 lines (48 loc) · 1.02 KB
/
Copy patherror.html
File metadata and controls
48 lines (48 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found | Ryan's Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
color: #333;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
}
h1 {
font-size: 5rem;
margin: 0;
color: #ff4c4c;
}
p {
font-size: 1.2rem;
margin: 10px 0 20px;
}
a {
text-decoration: none;
color: #0077cc;
border: 1px solid #0077cc;
padding: 10px 20px;
border-radius: 5px;
transition: background 0.3s, color 0.3s;
}
a:hover {
background-color: #0077cc;
color: #fff;
}
</style>
</head>
<body>
<h1>404</h1>
<p>Oops! The page you’re looking for doesn’t exist.</p>
<a href="index.html">Go Back Home</a>
</body>
</html>