
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Sayfa Bulunamadı</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
background-color: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 80px;
color: #f44336;
}
p {
font-size: 20px;
color: #555;
}
img {
max-width: 100%;
height: auto;
margin-top: 20px;
}
.back-home {
margin-top: 30px;
text-decoration: none;
font-size: 18px;
color: #007bff;
}
.back-home:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<p>Üzgünüz, aradığınız sayfa bulunamadı!</p>
<img src="https://i.hizliresim.com/25yhrgh.png" alt="404 Image">
<br>
<a href="/" class="back-home">Anasayfaya Dön</a>
</div>
</body>
</html>