Name | Progress |
---|---|
Section 1 | Not Read |
Section 2 | Not Read |
Section 3 | Not Read |
Module 1 Quiz | Not Attempted |
Name | Progress |
---|---|
Section 1 | Not Read |
Arithmetic Operations | Not Read |
Type Conversion | Not Read |
Name | Progress |
---|---|
Section 1 | Not Attempted |
Section 2 | Not Attempted |
Installing Visual Studio Code
Installing the Live Server Extension
Creating Your First Web Page
Enter the following HTML structure:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Page</title>
</head>
<body>
<h1>Hello, JavaScript World!</h1>
<p>This is my first web page served with Live Server.</p>
</body>
</html>
Save your file, right-click on it in the Explorer pane, and select "Open with Live Server" to view your web page in the browser.
🎉Congratulation! You are ready to get your hands dirty with some coding.🎊