blob: 9e8eea5baec6e71a10b0ba34128252cf5fee883e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
window.onload = () => {
document.documentElement.animate([ { "font": "-moz-desktop" }, { "font": "message-box" } ])
}
</script>
</head>
</html>
|