html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>
<span class="c1">S</span>
<span class="c2">O</span>
<span class="c3">L</span>
<span class="c4">O</span>
<span class="c5">L</span>
<span class="c1">E</span>
<span class="c2">A</span>
<span class="c3">R</span>
<span class="c4">N</span>
</h1>
</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{
text-align:center;
}
h1{
padding-top:calc(50vh - 0.5em);
}
h1{
}
.c1{
color: PaleVioletRed; /*Melon Mambo*//*#db7093*/
}
.c2{
color: #ffb31a; /*Crushed Curry*/
}
.c3{
color: LightSeaGreen; /*Bermuda Bay*//*#20b2aa*/
}
.c4{
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run