html
html
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<p class="text">Hello World!</p>
</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
body {
}
.text{
margin-top:45vh;
text-align:center;
/*above part was for alignment bro! Animation is next*/
animation:something 5s infinite;
}
@keyframes something{
0%{color: #ff087f;
font-size:2em;}
20%{color: #014666;
font-size:4em;}
40%{color: #ff087f;
font-size:2em;}
80%{color: #014666;
font-size:4em;}
100%{color: #ff087f;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run