scripts-fabq/pages/errors/default/505.html

71 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>505 HTTP Version Not Supported</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
color: #343a40;
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 100vh;
margin: 0;
}
.container {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
font-size: 2.5em;
margin-bottom: 20px;
}
p {
font-size: 1.2em;
margin-bottom: 30px;
}
.footer {
font-size: 0.9em;
color: #6c757d;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #ffffff;
padding: 10px 0;
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
h1 {
font-size: 2em;
}
p {
font-size: 1em;
}
}
</style>
</head>
<body>
<div class="container">
<h1>505 HTTP Version Not Supported</h1>
<p>
Oops! The server does not support the HTTP protocol version used in the
request.
</p>
</div>
<div class="footer">
<p>
Attempting to connect? It's like trying to use a VHS tape in a Blu-ray
player no support for the outdated format!
</p>
</div>
</body>
</html>