html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<head>
<title>Alan Walker Spectre</title>
</head>
<body>
<img src="https://i.pinimg.com/originals/fa/c2/27/fac227b4eb77528d284df935e15ec293.jpg">
<br>
<iframe src="https://drive.google.com/file/d/1ABVj6iqbFU9hJVndKanP2xoLo9cFHBht/preview?usp=drivesdk"></iframe>
</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;
}
img {
height:300px;
width:300px;
border:2px solid white;
border-radius:50%;
animation:a 2s linear infinite;
}
@keyframes a{
0%{
transform:scale(.50);
box-shadow:5px 2px 3px #6A5ACD;
}
20%{
transform:scale(1.00);
box-shadow:5px 2px 3px #4169E1;
}
40%{
transform:scale(0.50);
box-shadow:5px 2px 3px #00008B;
}
60%{
transform:scale(1);
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run