html
html
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<html>
<head>
<title>For You♡</title>
</head>
<body>
<div><h2>For You ♡</h2><iframe src="https://www.youtube.com/embed/VMz7nLC1IHg"></iframe></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 {
margin:0;
padding:0;
box-sizing:border-box;
background: black;
color: white;
}
div{
position:relative;
margin:0;
width:100vw;
height:100vh;
}
iframe{
width:70vw;
height:70vh;
position:absolute;
top:50%;
left:50%;
transform:translate(-50%, -50%);
outline:none;
border-radius:4px;
border:2px double #f20044;
}
h2{
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run