prompt in html code example
Example 1: js prompt
var answer = prompt('What is your name?','Joe Blogg');
Example 2: how to make a prompt in html
var person = prompt("Please enter your name", "Harry Potter");
if (person != null) {
document.getElementById("demo").innerHTML =
"Hello " + person + "! How are you today?";
}