-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub.html
32 lines (32 loc) · 1.07 KB
/
github.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>Discord Yönlendirme</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>Yönlendiriliyorsunuz</b>
<div class="txt">
placeTR GitHub organizasyon<br><br>
<input id="cancel" type="submit" value="İptal">
</div>
</center>
<script>
document.body.onload = function () {
setTimeout(function () {
window.location.href = "https://github.com/placeTR";
}, 2500)
}
document.querySelector("#cancel").addEventListener("click", function () {
window.location.href = "index.html";
})
</script>
</body>
</html>