do-it.html (252B)
1 <html> 2 <head> 3 </head> 4 <body> 5 <div id="page"></div> 6 <script type="text/javascript"> 7 let u = new URLSearchParams(location.search) 8 document.querySelector('#page').innerHTML = `Hello ${u.get('texty')}` 9 </script> 10 </body> 11 </html>