Changing the font size

Report a typo

Implement animation that changes the font size of the <p> element. At 0% it should increase to 100 pixels, at 25% it should be 105 pixels, and at 100% it should decrease to 50 pixels.

Write HTML and CSS code
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Changing the height</title>
</head>
<body>
<p>CSS Animation</p>
</body>
</html>



Completed 1 of 2
The animation is correctly created
The code is valid
___

Create a free account to access the full topic