Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <h1>My First Web Page</h1> <p>My first paragraph.</p> <button type="button" onclick="myFunction()">Click me!</button> <script> function myFunction() { document.write("Hello World"); } </script> </body> </html>
Result: