html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<iframe width="350px" height="330" src="https://www.youtube.com/embed/X_8sbVsVSNo" title="YouTube video player" frameborder="0" controls class=i></iframe>
<div class="main">
<div class=a></div>
<div class=b></div>
<div class=c></div>
<div class=d></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{
background-color: black;
}
iframe{
/* margin-top:25vh;*/
}
.main{
display:flex;
/* border:10px solid green;*/
margin:100px 100px;
padding:2px 0px;
justify-content:center;
color: gold;
}
.a{
position:relative ;
width:20px;
border:3px solid gold;
margin:0px 3px;
height:7em;
background: gold;
animation-name:Alok;
animation-duration:2s; animation-timing-function:ease-in-out;
Enter to Rename, Shift+Enter to Preview
js
js
1
2
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run