-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.html
55 lines (55 loc) · 2.58 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<title>touhidur.xyz</title>
<link href="https://touhidur.xyz/favicon.png" rel="icon" type="image/png">
<meta name="viewport" content="width=device-width">
<meta content="touhidur.xyz - Error! Page not found!" name="title">
<meta content="touhidur.xyz is a website owned by touhidurrr. An example site tries to follow best internet practices. The homepage consists of a simple Javascript animation example." name="description">
<meta content="touhidur.xyz, touhidurrr, website of touhidurrr, Md. Touhidur Rahman, example site, basic Javascript animation example, best SSL practices example, best SSL practices example site, Javascript animation, how to make animations with Javascript, how to make animations with Javascript example, how to make animations with Javascript example site" name="keywords">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta content="English" name="language">
<meta content="1 days" name="revisit-after">
<!-- Open Graph -->
<meta content="website" property="og:type">
<meta content="https://touhidur.xyz/" property="og:url">
<meta content="touhidur.xyz - Error! Page not found!" property="og:title">
<meta content="touhidur.xyz is a website owned by touhidurrr. An example site tries to follow best internet practices. The homepage consists of a simple Javascript animation example." property="og:description">
<meta content="https://touhidur.xyz/favicon.png" property="og:image">
<!-- twitter card -->
<meta content="summary_large_image" property="twitter:card">
<meta content="https://touhidur.xyz/" property="twitter:url">
<meta content="touhidur.xyz - Error! Page not found!" property="twitter:title">
<meta content="touhidur.xyz is a website owned by touhidurrr. An example site tries to follow best internet practices. The homepage consists of a simple Javascript animation example." property="twitter:description">
<meta content="https://touhidur.xyz/favicon.png" property="twitter:image">
<style>
.box {
font-size: 400%;
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}
</style>
<script>
angle = 0;
function rotate() {
angle = (angle + 1) % 360;
document.getElementById("1").style.transform = "rotate(" + angle + "deg)";
}
</script>
</head>
<body>
<div class="box">
<div align="center" id="1">
<div>
Error!
</div>
<div style="font-size: 35%;">
Page not found!
</div>
</div>
</div>
<script>setInterval(rotate, 10);</script>
</body>
</html>