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