JezK
Edit File: index.html
<!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>floral.krify.com</title> <style> @font-face { font-family: 'Covington'; src: local('Covington'); } @font-face { font-family: 'Mistral'; src: local('Mistral'); } body { margin: 0; padding: 0; font-family: 'Bahnschrift', sans-serif; /* Default font for the body */ background-color: #000000; /* Full Black Background */ height: 100vh; display: flex; justify-content: center; align-items: center; color: #fff; /* White text for contrast */ position: relative; } .container { text-align: center; animation: fadeIn 2s ease-in-out; } h1 { font-family: 'Covington', serif; /* Changed to Covington font */ font-size: 3.5em; letter-spacing: 2px; margin-bottom: 40px; /* Added margin for space */ color: white; /* Set text color to black */ /*text-shadow: 2px 2px 4px #80ffff; /* Changed shadow color to #80ffff */ animation: bounce 2s infinite; } p { font-size: 2em; /* Increased font size */ font-family: 'Mistral', cursive; /* Mistral font for this text */ color: #FFDAB9; /* Changed text color to warm white */ margin-bottom: 50px; /* Added space between text and Powered by */ opacity: 0.85; background: linear-gradient(90deg, #ffff54, transparent, #ffff54); /* Light passing effect */ background-size: 200% 100%; -webkit-background-clip: text; /* For Safari */ -webkit-text-fill-color: transparent; /* Text color to transparent */ animation: lightPass 4s linear infinite; /* Slowed down the animation for light effect */ } @keyframes lightPass { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } } .powered-by { font-size: 1em; /* Smaller font for Powered by */ color: red; /* Red color for Powered by text */ position: absolute; bottom: 10px; /* Positioned at the bottom */ right: 10px; /* Positioned to the right */ display: flex; align-items: center; animation: fadeInText 2s ease-in-out; } .powered-by img { width: 120px; /* Larger logo size */ margin-left: 10px; /* Space between text and logo */ } img.main-logo { width: 200px; margin-top: 10px; animation: fadeIn 3s ease-in-out; transition: transform 0.3s ease; } img.main-logo:hover { transform: scale(1.1); } /* Animations */ @keyframes fadeIn { 0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes fadeInText { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } </style> </head> <body> <div class="container"> <h1>Welcome to floral.krify.com</h1> <p>The website is under construction.</p> </div> <div class="powered-by"> Powered by <img src="krify-logo.png" alt="Krify Logo"> </div> <!-- Larger logo next to Powered by in bottom-right corner --> </body> </html>