Latest solutions
Latest comments
- @MainlyColors@MainlyColors
Fixed the label and added some animations to it if anyone wants to check it out, tried getting the website perfect the screenshot stops being a few pixels off but after checking I matched the figma, idk why its still off?
- @MatiasMass@MainlyColors
your github pages is showing the readme instead of the index.html, I assume the reason is your files are inside a doc folder but you didn't link the github pages setup to that folder.
The SVG images could be linked with an
<img>
tag instead of using the raw SVG code. like below:<img src="./images/icon-sedans.svg" width="64" height="40" alt=""/>
In this example we use "./" in the beginning of the link to say current directory then the normal folder structure after that. This is called the relative path, its relative to the index.html file location.
Also look into semantic HTML, the accessibility report is yelling at you because it expects to find a
<main>
tag which defines the main content on the page for people that use screen readers.Hope this helps, keep putting that work in😁
Marked as helpful