About
Explore
Events & Classes
Support Us
Join
Sign In
purple_ghost
View Project Page
Run
Fullscreen
usertoy's code project 12 Remix
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> </style> <script> function myFunction() { var nameid = prompt("Please enter your name", "Harry Potter"); if (nameid != null) { document.getElementById("demo").innerHTML = "Ahoy there " + nameid + "! Welcome to JUSTCodaborate! Follow the <a href='https://justcodaborate.com/user-2' target='_blank'>original creator</a> and <a href='https://justcodaborate.com/user-87' target='_blank'>purple_ghost</a>."; } } </script> </body> </html>
body { background-color: #5c1e5d; } e { font-family: Arial; font-weight: 800; font-size: 65px; color: #d818db; }