Level Navigation: Current Level: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
Set up your development environment and create a local git repository with starter files for practicing Emmet shortcuts.
mkdir emmet-practice
cd emmet-practice
git init
touch index.html style.css
git add .
git commit -m "Create index.html and style.css"
git remote add origin <repo-url>
git branch -M main
git push -u origin main
✅ Commit Reminder: You’ve already committed here — good start!
⚠️ Important: Keep your
index.html
file completely blank for now. Don’t add any content yet - we’ll start adding HTML in the next level!
✅ Commit Reminder: No code changes yet, so no commit needed.
index.html
file to open it in your web browserWindows key + Arrow keys
to snap windowsControl + Up arrow
then drag to arrange windows💡 Pro Tip: Remember these keyboard shortcuts:
- Save in VSCode:
Ctrl + S
(Windows/Linux) orCmd + S
(Mac)- Refresh browser:
Ctrl + R
(Windows/Linux) orCmd + R
(Mac)
✅ Commit Reminder: No code changes yet, so no commit needed.
🔄 Workflow Reminder: Remember to save (
Ctrl + S
) and refresh (Ctrl + R
) as you make changes in the upcoming lessons!
You’ve successfully:
You’re now ready to start learning Emmet shortcuts!
Level Navigation: Current Level: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |