To make an interactive webpage, we need two files: an HTML file, index.html, and a JavaScript file, script.js.

Tap through the files to check them out.

<html>
<body>
  HTML goes here
  <script>console.log("JavaScript goes here");</script>
</body>
</html>]]>