9 lines
348 B
HTML
9 lines
348 B
HTML
<!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>
|