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