Welcome to Jungle Time Warp, where adventure awaits in the heart of an ancient jungle. Stranded here due to a mishap in time travel, you find yourself surrounded by lush foliage and mysterious creatures. With each step, you'll uncover secrets of the past while navigating through this wild and vibrant landscape. Are you ready to embrace the unknown and embark on a thrilling journey through time and jungle? The adventure starts now!
- Ensure you have Visual Studio Code installed on your computer.
If you have not already installed VS Code, download and install it from here.
Live Server provides a quick development live server with live browser reload feature.
- Open Visual Studio Code.
- Go to the Extensions view by clicking on the square icon on the sidebar or pressing
Ctrl+Shift+X
. - In the search box, type
Live Server
. - Find the Live Server extension by Ritwick Dey and click the
Install
button.
After installing the Live Server extension, you can easily view your HTML file in a browser with live reloading.
- Open your project folder in VS Code.
- Navigate to the
index.html
file in the file explorer. here - Right-click on the
index.html
file. - Select
Open with Live Server
. This will automatically launch your default web browser and open theindex.html
file.
- Live Server starts a local server on your machine. The default port is usually
5500
, but it can change if that port is in use. Pay attention to the port number shown in the bottom-right corner of VS Code. - You can access the server by going to
http://localhost:5500
in your web browser. - To stop the server, click on the
Go Live
status bar item at the bottom-right of the VS Code window.