Latest solutions
Portfolio adapted to my needs, NextJs, TailwindCSS, SSR, Responsive
#typescript#tailwind-cssSubmitted almost 2 years agoResults Summary Component React, TailwindCSS And Vite
#react#tailwind-css#viteSubmitted about 2 years agoInteractive Rating Using TailwindCSS, React, Context, Reducer, Lotties
#react#tailwind-cssSubmitted about 2 years ago
Latest comments
- @melvin145Submitted about 2 years ago@GhostemaneUrsPosted about 2 years ago
-
Replace <div class="container"> with the main tag and wrap the heading in <h1> to fix the accessibility issues. click here for more on web-accessibility and semantic html.
-
In line 21 of your code, you have more the import
<img src="mages/image-product-desktop.jpg" alt="">
should be<img src="images/image-product-desktop.jpg" alt="">
try also to use the alt attribute to specify a name for your image in case it does not load so you let the user know what image may appear when your website is running thus improving the accessibility of your project. -
Remove
<link rel="stylesheet" href="">
from line 9 to solve the importing problem you have in your html head
Hope am helpful.
Well done for completing this challenge
0 -