Skip to content

ilyarpa88/login-page-html-css-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

login-page-html-css-code

I creat a normality loading page with html&css /html/

<title>Loading Page</title>

Loading...

<script> // Redirect to the next page after 3 seconds setTimeout(function() { window.location.href = 'web.html'; // Replace 'other-page.html' with your actual target page URL }, 3000); // 3 seconds </script>

/css/

body { font-family: Arial, sans-serif; margin: 0; padding: 0; }

.loader-container { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100vh; }

.loader { border: 8px solid #f3f3f3; border-top: 8px solid #3498db; border-radius: 50%; width: 50px; height: 50px; animation: spin 1s linear infinite; margin-bottom: 20px; }

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

p { font-size: 18px; color: #555; }

About

I creat a normality loading page with html&css

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published