scrimba
Note at 0:22
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Note at 0:22
AboutCommentsNotes
Note at 0:22
Expand for more info
index.css
run
preview
console
html,
body {
margin: 0;
padding: 0;
}

:root {
--bg-word: #5134ff;
}

body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}

h1::after {
content: "";
animation: carousel 5s steps(1) infinite;
background: var(--bg-word);
color: #fff;
margin-left: 2px;
padding: 8px 10px;
border-radius: 4px;
}

@keyframes carousel {
0% {
content: "reading";
}
45% {
content: "Scrimba";
}
65% {
content: "coding";
}
85% {
content: "music";
}
}
Console
/index.html
LIVE