861489-1.html (394B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <style> 6 7 @keyframes anim { 8 20% { 9 color: green; 10 } 11 } 12 13 a { 14 animation-name: anim; 15 animation-duration: 40s; 16 } 17 18 </style> 19 <style> 20 21 :link { background: red ! important; } 22 23 </style> 24 </head> 25 26 <body onload="document.documentElement.style.border = 'initial';"> 27 <div><a href="data:text/html,unlikely to be visited"></a></div> 28 </body> 29 </html>