Introduction
Welcome to your first JavaScript lab! JavaScript is a powerful scripting language that allows you to create dynamic and interactive content on web pages. Without it, web pages would be static and far less engaging.
In this lab, you will learn the two fundamental ways to include JavaScript in a web page:
- Internal JavaScript: Writing code directly within
<script>tags inside an HTML file. - External JavaScript: Placing code in a separate
.jsfile and linking it to the HTML file.
We will start with a basic HTML page and progressively add JavaScript functionality. You will use the built-in WebIDE to edit your files and preview your changes in real-time using the "Web 8080" tab. Let's get started!






