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)

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

👋 Kindness is contagious

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

Okay