Here's a JavaScript prompt that asks your visitor for their name, and welcomes them
                            with an alert after they fill in their name:

                            <script language="javascript">
                            var name = prompt("Write your name below:","Write it here.");
                            alert("Welcome "+ name +" to my page!!!");
                            </script>