Fix broken image URLs in DOM exercise finished HTML#268
Open
Vedant43hh wants to merge 1 commit into
Open
Conversation
Owner
|
@Asjas can you mirror this to the starter files as well? |
There was a problem hiding this comment.
Pull request overview
This PR updates image src URLs in the finished HTML for the DOM exercise to restore broken image rendering by switching to seed-based picsum.photos URLs.
Changes:
- Updated several
<img>srcattributes inexercises/20 - The DOM/index-FINISHED.htmlto use seed-based Picsum URLs. - Adjusted the main hero image URL to an explicit
500/500endpoint.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+18
to
+20
| <img class="custom" data-last="bos" data-name="wes" src="https://picsum.photos/seed/picsum/200/200" /> | ||
| <img data-name="kait" src="https://picsum.photos/200" /> | ||
| <img data-name="lux" src="https://picsum.photos/200" /> | ||
| <img data-name="lux" src="https://picsum.photos/seed/picsum/200/200" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR fixes broken images in the finished version of the DOM exercise.
The image URLs were using outdated
picsum.photosendpoints that no longer load correctly in some environments. Updated the image sources to use working Picsum seed-based URLs so the exercise displays images as expected.Changes Made
exercises/20 - The DOM/index-FINISHED.htmlTesting
index-FINISHED.htmlRelated Issue
Fixes #206