About
Explore
Events & Classes
Support Us
Join
Sign In
usertoy
View Project Page
Run
Fullscreen
usertoy's code project 12
HTML
CSS
JS
<!DOCTYPE html> <html> <body> <p>Click the button to demonstrate the prompt box.</p> <button onclick="myFunction()">Try it</button> <e id="demo"></e> <style> body { background-color: #aa1122aa; } e { font-family: impact; font-weight: 400px; font-size: 65px; color: #af1134bb; } </style> <script> function myFunction() { var nameid = prompt("Please enter your name", "Harry Potter"); if (nameid != null) { document.getElementById("demo").innerHTML = "Hi " + nameid + "! Welcome to JUSTCodaborate!"; } } </script> </body> </html>