18 lines
762 B
HTML
18 lines
762 B
HTML
<!DOCTYPE html>
|
||
<html lang="tr">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Sayfa Bulunamadı</title>
|
||
<style>body {font-family: Arial, sans-serif;display: flex;justify-content: center;align-items: center;height: 100vh;margin: 0;background-color: #f8f8f8;}.container {text-align: center;}h1 {font-size: 72px;margin: 0;color: #333;}p {font-size: 24px;color: #666;}a {color: #0066cc;text-decoration: none;font-size: 18px;}a:hover {text-decoration: underline;}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<h1>404</h1>
|
||
<p>Sorry, the page you are looking for cannot be found.</p>
|
||
<p><a href="/">Return to the Home Page</a></p>
|
||
</div>
|
||
</body>
|
||
</html>
|