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