WEBLEB
होम
संपादक
लॉग इन करें
Pro
हिंदी
English
Français
Español
Português
Deutsch
Italiano
हिंदी
स्लाइडिंग पाठ
749
Anes_unk
संपादक में खोलें
अपना कोड प्रकाशित करें
अनुशंसित
5 July 2025
डार्क मोड वेबसाइट फ़ुटर HTML CSS कोड
24 October 2024
फ्लैपी चिड़ियां
10 August 2024
सरल इनपुट फ़ील्ड
HTML
Copy
Sliding Text
Welcome to the Store
CSS
Copy
body { background-color: #000; color: white; font-family: 'Arial', sans-serif; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; text-align: center; } .slide-in { position: relative; animation: slide 2s ease-out forwards; } @keyframes slide { 0% { left: -100%; } 100% { left: 0; } } .container { display: flex; justify-content: center; align-items: center; flex-direction: column; gap: 20px; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); } h1 { font-size: 50px; letter-spacing: 2px; transition: transform 0.3s ease; } h1:hover { transform: scale(1.1); }
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */