-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
38 lines (34 loc) · 896 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
38
<!DOCTYPE html>
<html style="font-size: 16px;">
<head>
<meta charset="utf-8">
<title>SCOOKER ERROR</title>
<style>
.button {
border: none;
color:white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 32px;
font-style: bold;
margin: 4px 2px;
height : 100px;
width : 500px;
}
.blue {background-color: rgb(135, 235, 157)};
</style>
</head>
<body>
<div style="text-align:center">
<h1>404 ERROR PAGE</h1>
<br>
<button type="button" class="button blue" onclick="location.href='/index.html'">
BACK TO HOME
</button>
<br>
<h3><나한테 알려줘 ㅠㅠ></h3>
</div>
</body>
</html>