html
html
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<p class="p">When you connect an Arduino and a Raspberry Pi, is like connecting a potato to a rocket</p>
<h1 class="body" >-parrot</h1>
</body>
</html></head>
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: DarkSlateGrey;
body{
background-color:red;;
animation:text 20s infinite ;
position:;
}
.body{
text-shadow:10px 10px 10px ;
text-align:center;
font-size:30px;
animation: text 20s infinite ;
}
.p{
animation:text2 20s infinite ;
animation-delay:1s;
text-shadow:10px 10px 10px ;
text-align:center;
font-size:30px;
}
@keyframes text{
0%,100%{
color: red;
font-size:100px;
background-color: black;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run