scrimba
CSS animations
Real-World Animations Challenge: Landing Page
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

Real-World Animations Challenge: Landing Page
AboutCommentsNotes
Real-World Animations Challenge: Landing Page
Expand for more info
index.html
run
preview
console
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Sen&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="index.css">
<title>Animations - Real-World Challenge</title>
</head>
<body>

<div class="image-wrapper">
<h1 class="title">Be the best version of you.</h1>
</div>

<!-- Animation Challenge
-------------------

Your task is to create two animations that will first cause the background to fade in and expand in width from left to right, then fade in the text in the center. The first animation should take 1.5 seconds, followed by a 0.5 second delay, and finally, 1 second for the text fade-in. Both animations should have an ease-out timing function and run once. All styles should be retained once the animation ends. Good luck! -->

</body>
</html>
Console
/index.html
-6:37