Untitled
unknown
plain_text
7 days ago
2.0 kB
4
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Vindictus Gold Shop</title> <style> body { background-color: #121212; color: #fff; font-family: Arial, sans-serif; text-align: center; padding: 20px; } .container { max-width: 600px; margin: auto; padding: 20px; border-radius: 10px; background: rgba(255, 255, 255, 0.1); box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2); } .btn { display: inline-block; padding: 10px 20px; margin-top: 20px; background-color: #ffcc00; color: #121212; text-decoration: none; font-size: 18px; border-radius: 5px; transition: background-color 0.3s, transform 0.2s; } .btn:hover { background-color: #ffaa00; transform: scale(1.05); } @keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } .fade-in { animation: fadeIn 1s ease-in-out; } @keyframes glow { 0% { box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2); } 50% { box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.4); } 100% { box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2); } } .container { animation: glow 3s infinite alternate; } </style> </head> <body> <div class="container fade-in"> <h1>Vindictus Gold Shop</h1> <p>Buy in-game gold safely and instantly. Best prices guaranteed!</p> <a href="#" class="btn">Shop Now</a> </div> </body> </html>
Editor is loading...
Leave a Comment