<head> <h1>greeting</h1> </head> <body> <script> let name = prompt("What`s Your name?"); let hello = "Hello, " alert(hello + name); </script> </body>