TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html> <head> <title>JavaScript Example</title> <script> function greet() { alert("Welcome to My Website!"); } </script> </head> <body onload="greet()"> <h1>Hello!</h1> <p>This page greets you with an alert message on load.</p> </body> </html>