+ 2
How to animate the abjects using CSS and HTML
5 Answers
+ 4
If you talking about fixed animation, HTML/CSS alone can perform it.
Javascript only needed if there is some logics to apply to the animation.
https://code.sololearn.com/WGv6n460d8wP/?ref=app
+ 3
I think you read properly css/html
and animation properties.
+ 2
you can only style the objects using html and case. if you want to animate the object you need to include javascript. give it a try
+ 1
Thank you for help
+ 1
for e.g.
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
.a1{
font-size:22px;
}
</style>
</head>
<body>
<div class="a1">
<p>WELCOME</p>
</div>
</body>
</html>
try yourself.