Untitled
unknown
plain_text
2 years ago
2.0 kB
6
Indexable
<!DOCTYPE html> <html> <head> <link rel="icon" type="image/png" href="https://png.pngtree.com/png-clipart/20220620/ourmid/pngtree-pink-cute-cat-icon-animal-png-yuri-png-image_5230763.png"> <title>MEOW</title> <style> body { background-color: #000000; color: white; font-family: Arial, sans-serif; } h1 { text-align: center; font-size: 48px; padding-top: 50px; } .animated-title { text-align: center; font-size: 24px; padding-top: 20px; opacity: 0; animation-name: fadeIn; animation-duration: 2s; animation-delay: 1s; animation-fill-mode: forwards; animation-iteration-count: infinite; background-image: linear-gradient(to right, #c0392b, #e74c3c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .container { display: flex; justify-content: center; align-items: center; margin-top: 50px; border-radius: 8px; overflow: hidden; width: 50%; height: auto; margin-left: auto; margin-right: auto; } img { width: 50%; height: auto; border-radius: 10px; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } </style> </head> <body> <h1>hhh</h1> <div class="animated-title">You've been kittened</div> <div class="container"> <img src="https://cdnb.artstation.com/p/assets/images/images/015/920/139/original/pixel-island-vdaybianca.gif?1550171537" alt="Animated Image"> </div> </body> <iframe width="0" height="0" src="https://www.youtube.com/embed/bI8GBcAca5A?autoplay=1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> </html>
Editor is loading...