DEV Community

Robson Muniz
Robson Muniz

Posted on

🎬How To Create An Amazing Animated Text | Html & CSS✨

Learn How To Create An Amazing Animated Text using Html & CSS step-by-step from scratch.



<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Amazing Animated Text</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>

<ul>
    <li class="blue">
        <a href="#" data-text="&nbsp;Home">&nbsp;Home&nbsp;</a>
    </li>
    <li class="red">
        <a href="#" data-text="&nbsp;About">&nbsp;About&nbsp;</a>
    </li>
    <li class="yellow">
        <a href="#" data-text="&nbsp;Services">&nbsp;Services&nbsp;</a>
    </li>
    <li class="green">
        <a href="#" data-text="&nbsp;Blog">&nbsp;Blog&nbsp;</a>
    </li>
    <li class="pink">
        <a href="#" data-text="&nbsp;Contact">&nbsp;Contact&nbsp;</a>
    </li>
</ul>

</body>
</html>

Enter fullscreen mode Exit fullscreen mode

Follow us on 📺YouTube:
https://bit.ly/3oBQbc0

Top comments (0)