Get started with the Frontend Handbook and set up your development environment
Code Editor
Web Browsers & DevTools
F12
or Ctrl+Shift+I
(Windows/Linux) or Cmd+Option+I
(Mac) in your browser.Version Control with Git
Node.js and npm
Create a new project folder
Initialize Git repository
bash git init
Create a .gitignore
file to exclude unnecessary files:
node_modules/ .DS_Store .env
Set up basic project structure
index.html css/styles.css js/script.js images/
Create a basic HTML template
index.html
:Preview your changes
Deploy using GitHub Pages / Vercel / Netlify
Push your changes to GitHub