Software-Engineering # How can I add JS to a file? Can be added to a specific file in 4 different ways: inline script internal script external script multible external scripts Inline-Script <!DOCTYPE html> <html> <head> <title>30DaysOfScript:Inline Script</title> </head> <body> <button onclick="alert('Welcome to 30DaysOfJavaScript!')">Click Me</button> </body> </html> Internal-Script <!DOCTYPE html> <html> <head> <title>30DaysOfScript:Internal Script</title> <script> console.log('Welcome to 30DaysOfJavaScript') </script> </head> <body></body> </html> External-Script <!DOCTYPE html> <html> <head> <title>30DaysOfJavaScript:External script</title> <script src="introduction.js"></script> </head> <body></body> </html> Multiple External Scripts <!DOCTYPE html> <html> <head> <title>Multiple External Scripts</title> </head> <body> <script src="./helloworld.js"></script> <script src="./introduction.js"></script> </body> </html>