-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
32 lines (32 loc) · 1.06 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Birşeyler yanlış gitti...</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="https://avatars.githubusercontent.com/u/140610717?s=200&v=4" type="image/x-icon">
</head>
<body class="dark">
<button class="go-to-bottom">↓</button>
<button class="back-to-top">↑</button>
<button class="theme">☾</button>
<center>
<b>Opps!</b><br><br>
<div id="txt">
Birşeyler yanlış gitti...
İstersen eve dön, burayı terk et veya biraz daha bekle.
</div>
<br>
<input type="submit" id="back" value="Eve dön">
<br><br>
<a href="">Sayfayı yenile</a>
</center>
<script>
document.querySelector("#back").onclick = function () {
window.location.href = "index.html";
}
</script>
<script src="script.js"></script>
</body>
</html>