html
html
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html>
<head>
<!--By: I'm Sarah-->
<title>Thanks for that much support!❤️</title>
</head>
<body>
<div class="sq">
<p>Thanks to all you wonderful people who are reading this ❤️</p>
</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: #66dd66;
}
.sq {
margin-top: 100px;
height: 100px;
width: 200px;
background-color: #dd6666;
text-align:center;
margin-left: auto;
margin-right: auto;
display: block;
animation-name: anime;
animation-duration: 4s;
animation-iteration-count: infinite;
}
@keyframes anime{
0%{
transform: rotate3d(1, 1, 1, 0deg)
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run