mirror of
https://github.com/ReviveMii/website
synced 2025-09-02 19:41:05 +02:00
34 lines
780 B
HTML
34 lines
780 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>ReviveMii - 404</title>
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
background-color: #f8f8f8;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
.container {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<img src="/4error.jpg">
|
|
<br>
|
|
<a href="/">Home</a>
|
|
<p style="color: grey">TheErrorExe & ReviveMii Project 2024</p>
|
|
</div>
|
|
</body>
|
|
</html>
|