Latest solutions
Latest comments
- @FherAmableRicseSubmitted over 2 years ago@davinceeyPosted over 2 years ago
Hello @FHER AMABLE RICSE. Great solution you have here (I just completed mine too😆) As concerns your question, it would be preferable if you use CSS Selectors and pseudo elements to change the color of your placeholder. This can be done by using this
::placeholder
. So to change it's color, you do this:::placeholder{ color: black; }
This would enable your Javascript code to be cleaner.
Hope this helps you. Happy Coding!
0 - @paryanimohit1Submitted over 2 years ago@davinceeyPosted over 2 years ago
Hello Mohit. Congratulations on your first project! This is apt and great on the whole. Just some little tips for improvement:
-
You might want to replace the
p
tag used in the first write-up, with ah1
tag, so that your<main>
tag, has a level-one heading. -
You might as well, want to use more of relative units such as the
em
andrem
in applying to padding, margins, widths and font-sizes. This would help to increase the responsiveness of your layout.
You did very well. Keep up!
Hope this helps you. Happy Coding!👊
Marked as helpful1 -
- @ProcodxSubmitted over 2 years ago@davinceeyPosted over 2 years ago
Hello Akinrinlola olamide. Congratulations on your first project! Just some little tips for improvement:
- You could make use of the
display: flex
to centralize your solution. You could make use of this code:
body{ display: flex; justify-content: center; align-items: center; }
-
You could wrap all your content with the
<main>
tag and then make use if theh1
tag as a level-one heading. It would be perfect if it replaces theh3
tag used in your code and it would help in improving Accessibility. -
You could also make use of relative units like the
em
andrem
units for your font-sizes, padding, margins and widths. This would help to improve your site's responsiveness.
Hope this helps you. Happy Coding!👊
Marked as helpful0 - You could make use of the
- @niccolashernandezSubmitted over 2 years ago@davinceeyPosted over 2 years ago
Hello Nicolás Hernández. Congratulations on finishing this project! I previewed your site and it looks very good. But I observed that it wasn't responsive when I used my Chrome Dev Tools.
You might want to go through your media query code. You used
min-width: 1440px
, instead of setting how it should look on a mobile layout (375px). This made your site have issue with being responsive.You might want to also make use of relative units like the
em
andrem
to replace thepx
when applying to padding, margins, font-sizes and widths, as this would help improve their responsiveness.Hope this helps you. Happy Coding!👊
Marked as helpful0 - @ammar886Submitted over 2 years ago@davinceeyPosted over 2 years ago
Hello Ammar Khalid. Congratulations on finishing this project! And, yes, your solution is clean😁. Just some little tips for improvement:
-
You could do well to wrap all your content in a
<main>
tag. You made use of a lot of divs. You could just make use of a<section>
tag to group your work just right under the svg. -
I observed that your writeups were not wrapped in any tags. It would be good HTMML practice to wrap your codes in tags. Your should use this instead
<h1>Improve your front-end <br> skills by building projects</h1>
and ap
tag for the second write-up. -
You could also make use of relative units like the
em
andrem
for padding, margins, and widths. This would enable your site to be more responsive.
Hope this helps you. Happy Coding!👊
Marked as helpful0 -
- @ndorph1nSubmitted over 2 years ago@davinceeyPosted over 2 years ago
Hello EnD1nG. Congratulations on your first project! Your solution is nice and great in the whole. Some little tips for you:
-
You could do well to wrap everything in a
<main>
tag instead. This would help in good HTML validation and would also help screen-readers to know that they are about going through the main content of your site. Also, you could replace the div in this code<div class="card-inner">
, with asection
semantic tag. This would help to improve Accessibility. -
You can replace the
h2
tag with anh1
tag so that it obeys the HTML hierarchy, giving your code a level one heading.
Hope this helps you. Happy Coding!👊
Marked as helpful1 -