Navigation
1 | 2 | 3 | Current Level: 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14
Step 4: Get the Starter Code 📁
🎯 Objective
Copy the starter HTML files from the course resources to your repository to begin building the emoji encoding website.
📋 Task Requirements
Who: Repository Owner (ONE person only)
🔍 Step-by-Step Instructions
- Navigate to Starter Code
- Copy Required Files
index.html
- Main landing page
encoding-ascii.html
- ASCII binary encoding page
encoding-emojis.html
- Custom emoji alphabet page
- Add Files to Your Repository
- Go to your GitHub repository
- Click “Add file” → “Upload files”
- Drag and drop or select the three HTML files
- Add a commit message: “Add starter HTML files”
- Click “Commit changes”
- Verify Files Are Added
- Check that all three files appear in your repository
- Make sure the files are properly formatted
✅ Success Criteria
💡 Tips
- Make sure you’re copying the correct files from the right location
- Use descriptive commit messages for future reference
- The files should maintain their original formatting
- You can preview the files on GitHub to make sure they look correct
🚀 Ready for Next Step?
Once the starter files are uploaded to your repository, you’re ready for Step 5: Clone and Setup.
💾 Git Workflow Reminder
After completing this step:
- Files uploaded via GitHub web interface (committed automatically)
- In future steps, remember to:
git add .
to stage your changes
git commit -m "descriptive message"
to commit
git pull
before starting new work
git push
to upload your changes
- If you encounter conflicts, see the conflicts tutorial