Latest solutions
HTML5 - Flexbox - Tailwind CSS - React - Typescript
#react#tailwind-css#typescriptSubmitted almost 3 years ago
Latest comments
- @AbdallahNoor@xsrpm
- You could adapt your website for mobile devices.
- I'm curious, with what tool did you model your website?
Marked as helpful - @JSaporski@xsrpm
the font color of the header button appears to be white instead of hsl (204, 43%, 93%), otherwise it is almost identical. You can separate your css into files by target.
Marked as helpful - @gianback@xsrpm
You can separate the css code by target, it is a good practice.
<link rel = "stylesheet" href = "style.css" /> <link rel = "stylesheet" href = "desktop.css" media = "screen and (min-width: 1440px)" /> You can check the uploads of others to review where to improve.Marked as helpful - @pennvi@xsrpm
The design is almost identical. Regarding what you comment on the use of ids, it is true you should not use them in this type of exercise, just to obtain a reference to a DOM element in javascript. In css with classes and specificity with tags it is enough. The BEM methodology also helps to correctly name the classes.
- @Memeena@xsrpm
Don't forget to use semantic tags like main and footer. Your solution is visually very similar
- @Marialba16@xsrpm
hello some feedbacks: 1- instead of
<div class = "container"> uses: <main> 2- instead of: <div class = "attribution"> uses <footer class = "attribution">Marked as helpful