DevJourney

Javascript/30DaysofJS/index.html

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Multiple External Scripts</title>
  </head>
  <body>
    <script src="./helloworld.js"></script>
    <script src="./introduction.js"></script>
    <script src="./typeof.js"></script>
    <script src="./main.js"></script>
  </body>
</html>
View on GitHub