Presented by KJSCE-ACM
🚀 Into the Webverse is an immersive code-along workshop where you'll build a fully functional Expense Tracker using the fundamentals of web development. Whether you're a beginner or looking to refine your skills, this hands-on session will guide you through the core concepts, ensuring a streamlined and engaging learning experience.
✅ Basics of HTML, CSS, and JavaScript
✅ Managing state and handling user inputs
✅ Working with local storage for data persistence
✅ Building a responsive and interactive UI
- Download Git from Windows Git Download.
- Run the installer and follow the setup instructions.
- First, install Homebrew by running the following command in your terminal:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" -
brew install git
- Verify Git Installation Open Command Prompt and run:
git --version- Set Up Git Username & Email Configure your Git identity (used for commits):
git config --global user.name "Your Name"
git config --global user.email "your-email@example.com"- Clone a Repository
git clone "repository-link"git add .Adds all changes to the staging area.git commit -m "message"Saves the changes to the local repository.git push origin mainUploads the changes to GitHub.git pull origin mainFetches updates from GitHub and merges them locally.
GitHub is a cloud-based platform that integrates with Git, allowing you to:
- Store and manage your projects in remote repositories.
- Collaborate with teammates and contribute to open-source projects.
- Keep track of changes, issues, and different versions of your code.
- Showcase your work and build a strong portfolio.
Into-The-Webverse
├─── demonstration
│ └─── css
│ └─── flex.html
│ └─── absolute-relative.html
│ └─── font.html
│ └─── invert.html
│ └─── media-query.html
│ └─── mp.html
│ └─── overflow.html
│ └─── z-index.html
│ └─── js
│ └─── js.html
│ └─── script.js
├─── expense-tracker
│ └─── assets
│ └─── index.html
│ └─── index.css
│ └─── index.js
├─── README.md