html
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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link href="https://fonts.googleapis.com/css?family=Coustard:900" rel="stylesheet">
</head>
<body>
<h1>404</h1>
<h2>PAGE NOT FOUND</h2>
<div class="backg">
<div class="sand">
<a href="https://www.youtube.com/watch?v=8nDAxCpGITQ">My Youtube Channel</a>
</div>
<div class="tower">
<div class="s1"></div>
<div class="s2"></div>
<div class="door1"></div>
<div class="door2"></div>
<div class="balcony">
<div class="b1"></div>
<div class="b2"></div>
<div class="b3"></div>
<div class="b4"></div>
<div class="b5"></div>
<div class="b6"></div>
<div class="b7"></div>
<div class="b8"></div>
Enter to Rename, Shift+Enter to Preview
css
css
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
body{
background-color: #99ddff;
overflow-x:hidden;
}
.backg{
height: 510px;
width: 350px;
margin: auto;
left:0;
right: 0;
position: absolute;
}
.sand{
background-color: #ffc34d;
height:100px;
width: 350px;
border-radius:175px 175px 0px 0px;
position: relative;
top:410px;
}
a{
position:relative;
font-size:20px;
top:60px;
left:90px;
z-index:5;
color: black;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run