You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
744 B
38 lines
744 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>loading Project</title>
|
|
<style>
|
|
.loading {
|
|
width: 80px;
|
|
height: 80px;
|
|
border: 10px solid #efefef;
|
|
margin: 200px;
|
|
border-radius: 50%;
|
|
border-left: 10px solid red;
|
|
animation: loading 1s linear infinite;
|
|
}
|
|
|
|
@keyframes loading {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<!-- notes
|
|
|
|
-->
|
|
|
|
<body>
|
|
<div class="loading"></div>
|
|
</body>
|
|
|
|
</html> |