-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
43 lines (41 loc) · 796 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
39
40
41
42
43
<html>
<head>
<title>404</title>
<meta name="viewport" content="width=device-width">
<link rel="shortcut icon" href="src/fav.png" />
<style>
body{
background-color: #000;
overflow: hidden;
margin: 0;
padding: 0;
cursor: pointer;
}
iframe {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
background-size: cover;
}
#title {
font-family: serif;
font-size: 40px;
font-style: italic;
text-align: center;
color: #fff;
width: 100%;
position: absolute;
bottom: 300px;
left: 0;
}
</style>
</head>
<body>
<iframe src="https://www.youtube.com/embed/WcDx5Ixke-s?controls=0" frameborder="0" allowfullscreen></iframe>
<div id="title">you are lost.</div>
</body>
</html>