How To Create a Loader-HTML & CSS Loader

loader img


COPY CODE

<!DOCTYPE html>
<html>
<head>
<title>Loader</title>


<style>
.loader{
border:16px solid black;
border-top:16px solid red;
border-radius:50%;
width:120px;
height:120px;
animation:spin 2s linear infinite;
}

@keyframes spin{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}

</style>
</head>

<body>

<div class="loader"></div>
</body>

</html>
    
    RESULT BELOW



 Loader







Comments

Popular posts from this blog

Make Your Own Evil USB

How to Insert, Copy and Delete Slides in MS PowerPOint XP

Capture Keystrokes & Passwords Remotely