blob: 66856000866b3384ab62de7589d314d405ecdafd (
plain)
1
2
3
4
5
6
7
8
9
|
<!DOCTYPE html><meta charset=utf-8>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<body style="margin: 0px">
<script>
let args = location.search.substring(1).split(',');
document.write(`<img src="${args[0]}" width="${args[1]}" height="${args[2]}">`);
</script>
</body>
|