How to add a prompt diolog box in a webpage

This is the same as alert diolog box but there will be a text area where you can type anthying and view in in the web page.
For example see the coding below and try this. As shown in out put you will get a diolog box with text area.


<html>
<body>
<script language="JavaScript">
var ring;
ring=prompt("Enter you name","Good Morning");
document.write("Hello "+ring+".<br>What book
did you read today?"); </script> </body> </html>
note:Do not forget to add + at the start and the end of the variable to get added up to the text
and don't put the variable in the quots.

Output


This will be the out put. If you type your name and click OK you will get output as:
example:

Hello Matthew.
What bood did you read today?

This is how you will make a prompt dialog box.