
Solution retrospective
in my own VS Code Live Server, I see the project just fine with both circles on each corner but as I uploaded them, I don't see them in the Github Pages. Don't know why. Help?
Please log in to post a comment
Log in with GitHubCommunity feedback
- @0xabdulkhaliq
Hello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have some recommendations regarding your doubts that I believe will be of great interest to you.
SUGGESTION 💡:
- "I see the project just fine with both circles on each corner but as I uploaded them, I don't see them in the Github Pages. Don't know why. Help?", Sure i'm here to guide you.
- Here the image path you provided need to be starts with
./
because putting./
states that yourindex.html
file is in theroot
directory. So we can quicky fix by adding the./
infront theimage
src path.
- Example:
background-image: url('./images/bg-pattern-bottom.svg')
- Note:
./
is important here, which states from the root of a folder
HTML 🏷️:
- This solution generates accessibility error reports, "All page content should be contained by landmarks" is due to
non-semantic
markup, which causes lacking of landmark for a webpage
- So fix it by replacing the
<div class="container">
element with the semantic element<main>
along with<div class="attribution">
into a<footer>
element in yourindex.html
file to improve accessibility and organization of your page.
- What is meant by landmark ?, They used to define major sections of your page instead of relying on generic elements like
<div>
or<span>
. They are use to provide a more precise detail of the structure of our webpage to the browser or screen readers
- For example:
- The
<main>
element should include all content directly related to the page's main idea, so there should only be one per page - The
<footer>
typically contains information about the author of the section, copyright data or links to related documents.
- The
.
I hope you find this helpful 😄 Above all, the solution you submitted is great !
Happy coding!
Marked as helpful - @savvystrider
Your project looks great! To get your background images to appear, you will have to make a minor modification to your CSS:
.circle-background
and.circle-background2
need a period added inside the parentheses for theurl
background-image: url('./images/bg-pattern-bottom.svg')
instead ofbackground-image: url('/images/bg-pattern-bottom.svg')
.
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord