Problem
The example image on the "How to Use" page is not displaying.
Instead of the image, a broken image icon appears.
Goal
Fix the image so that it loads correctly from the static folder.
Steps to Reproduce
- Open the "How to Use" page
- Scroll to the "Example of a Dead Reference" section
- Observe that the image is broken
Hint
The issue is caused by an incorrect filename in the image source.
The correct image file exists in the /static folder.
File to Update
Locate the <img> tag in the template and fix the filename inside:
url_for('static', filename='...')
Expected Result
- The image displays correctly
- No broken image icon is shown
Difficulty
Easy to Medium
Bonus (Optional)
- Add a fallback image using the "onerror" attribute