Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>Example</title> <style> .animated { font: 100 1em/1.5em sans-serif; background-color: black; color: white; width: 330px; padding: 5px; text-align: center; opacity: 0.0; animation: myAnimation 2s ease 1s 3 alternate forwards; } @keyframes myAnimation { 100% { opacity: 1.0; } } </style> <div class="animated"> <h1>New Zealand</h1> <img src="/pix/samples/2m.jpg" alt="Scenery in New Zealand"> </div>