-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
119 lines (106 loc) · 3.17 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<title>404 Not Found</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<style type="text/css">
*{ margin: 0; padding: 0; box-sizing: border-box;
font-family: 'Montserrat', sans-serif;}
.main_body{
width: 100%; height: 100vh;
background-image: url('https://www.awdev.my.id/assets/img/background/bg.jpg');
background-repeat: no-repeat;
background-size: 100% 100%;
display: flex;
justify-content: center;
align-items: center;
}
.center_body{
width: 65%;
height: 70%;
background-image: url('images/bg.jpg');
background-repeat: no-repeat;
background-size: 100% 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
transition: all 0.5s linear;
}
.center_body h1{
font-size: 200px;
color: white;
letter-spacing: 5px;
font-weight: 700;
text-shadow: 10px 9px 3px #74b9ff;
transition: all 1s linear;
}
.center_body h2{
color: white;
font-size: 26px;
font-weight: 700;
text-transform: uppercase;
}
.center_body p{
color: white;
font-weight: 400;
text-align: center;
margin: 20px auto;
}
.center_body a{
font-size: 14px;
text-decoration: none;
text-transform: uppercase;
display: inline-block;
color: blue;
background: white;
padding: 15px 30px;
box-shadow: 5px 4px 15px -5px #0046d5;
border-radius: 40px;
transition: all 0.5s linear;
}
.center_body:hover h1{
text-shadow: 9px 6px 3px #b2bec3;
}
.center_body:hover a{
color: white;
background: blue;
}
</style>
<link rel="icon" type="image/png" href="/ico.png"/>
<link rel="icon" type="image/png" href="/favicon.png"/>
<link rel="icon" type="image/png" href="/favicon.ico"/>
<meta name="google-site-verification" content="k_p5qv-UQtNSyHHGKcGrnWigY5k1B9jxaCqjRlz5-BA" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8796768128400226"
crossorigin="anonymous"></script>
<meta name="google-adsense-platform-account" content="ca-host-pub-8796768128400226"/>
<meta name="google-adsense-account" content="ca-pub-8796768128400226"/>
<meta name="google-adsense-platform-domain" content="awdev.my.id"/>
<meta name="google-adsense-platform-domain" content="www.awdev.my.id"/>
<meta name="google-adsense-platform-author-url" content="https://www.awdev.my.id"/>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8796768128400226"
crossorigin="anonymous"></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-host-pub-8796768128400226"
crossorigin="anonymous"></script>
<script async custom-element="amp-auto-ads"
src="https://cdn.ampproject.org/v0/amp-auto-ads-0.1.js">
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5BKVKF0V39"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5BKVKF0V39');
</script>
</head>
<body>
<div class="main_body">
<div class="center_body">
<h1>404</h1>
<h2>PAGE NOT FOUND</h2>
<a href="https://www.awdev.my.id/" target="_blank"> go to homepage</a>
</div>
</div>
</body>
</html>