-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
37 lines (34 loc) · 893 Bytes
/
404.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>404 - Sayfa Bulunamadı</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
padding: 50px;
}
.container {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
padding: 20px;
}
h1 {
font-size: 36px;
}
p {
font-size: 18px;
}
</style>
</head>
<body>
<div class="container">
<h1>404 - Sayfa Bulunamadı</h1>
<p>Üzgünüz, aradığınız sayfa mevcut değil veya taşındı. Lütfen başka bir sayfaya yönlendiriliyorsanız, ana sayfaya geri dönün.</p>
<a href="/">Ana Sayfa'ya Geri Dön</a>
</div>
</body>
</html>