DEV Community

Robson Muniz
Robson Muniz

Posted on

2 1

🎬CSS Loading Animation | HTML & CSS🙌

Make a CSS Loading Animation using HTML & CSS, step-by-step from SCRATCH…



Web Dev
https://bit.ly/3oBQbc0


Source Code:

Markup

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>CSS Loading Animation</title>
  <link rel="stylesheet" href="style.css">
</head>

<body>
  <div class="loader">
    <span></span>
    <span></span>
    <span></span>
    <h2>Loading...</h2>
  </div>

</body>

</html>

Enter fullscreen mode Exit fullscreen mode

Top comments (0)

The Most Contextual AI Development Assistant

Pieces.app image

Our centralized storage agent works on-device, unifying various developer tools to proactively capture and enrich useful materials, streamline collaboration, and solve complex problems through a contextual understanding of your unique workflow.

👥 Ideal for solo developers, teams, and cross-company projects

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay