How to embed JavaScript in HTML file?


Following is the code to embed JavaScript in html file −

Example

 Live Demo

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script src="script.js" defer></script>
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   .result {
      font-size: 18px;
      font-weight: 500;
      color: rebeccapurple;
   }
</style>
</head>
<body>
<h1>Embed javascript in html file</h1>
<div class="result"></div>
<script>
   let resEle = document.querySelector(".result");
   resEle.innerHTML += "Inline javaScript loaded" + "<br>";
</script>
</body>
</html>

script.js

resEle.innerHTML += 'External JavaScript loaded ';

Output

The above code will produce the following output −

Updated on: 17-Jul-2020

383 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements