This is a custom code placeholder.
Switch to Preview or publish the page
to see how your code works.
Double-click to edit
<!DOCTYPE html> <html> <head> <meta http-equiv="refresh" content="0;url=https://careerallies.staynimble.co.uk/kae"> <style> body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background: #ffffff; color: #1a1a1a; margin: 0; padding: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; } .wrap { max-width: 480px; padding: 40px 24px; } h1 { font-size: 24px; font-weight: 600; margin: 0 0 12px; color: #1a1a1a; } p { font-size: 16px; line-height: 1.5; color: #555; margin: 0 0 24px; } .spinner { width: 32px; height: 32px; border: 3px solid #e5e5e5; border-top-color: #00B4D8; border-radius: 50%; margin: 0 auto 24px; animation: spin 0.8s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } a { color: #00B4D8; text-decoration: none; font-size: 14px; } a:hover { text-decoration: underline; } </style> </head> <body> <div class="wrap"> <div class="spinner"></div> <h1>Career Allies has a new home</h1> <p>Taking you there now…</p> <a href="https://careerallies.staynimble.co.uk/kae">Click here if you're not redirected</a> </div> </body> </html>