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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link href="https://fonts.googleapis.com/css2?family=Chewy&display=swap" rel="stylesheet">
</head>
<body>
<div class="con">
<div class="l"></div>
<div class="l"></div>
<div class="l"></div>
<div class="l"></div>
<div class="l"></div>
<div class="l"></div>
<div class="l"></div>
<div class="l"></div>
<div class="l"></div>
<div class="l"></div>
<div class="l"></div>
<div class="l"></div>
<div class="l"></div>
</div>
</body>
</html>
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 {
width: 100vw;
height: 100vh;
margin: 0;
background: black;
position: fixed;
text-align: center;
font-family: 'Chewy', cursive;
}
.con {
height: 50%;
width: 100%;
margin: auto;
position: absolute;
top: -30vh;
right: 0;
bottom: 0;
left: -30vw;
perspective: 9999px;
-webkit-transform-style: preserve-3d;
text-align:center;
}
.l {
width: 50%;
height: 50%;
position: absolute;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run