JavaScript Introduction
<!DOCTYPE html> <html> <body> <h2>JavaScript Introduction</h2> <script> // Print a friendly greeting to the console console.log('Hello, world!'); // You can log numbers and calculations too console.log(5 + 7); </script> </body> </html>