I would do different the tablet version
What specific areas of your project would you like help with?I made a lot of errors but the overall solution looks decent
I would do different the tablet version
What specific areas of your project would you like help with?I made a lot of errors but the overall solution looks decent
This is an amazing solution, well done. The animated fly-in's are awesome. Here's a few tips to improve:
Overall, this is an exemplary solution, well done.
An excellent attempt, here's how you can improve:
display: grid;
place-items: center;
To your body, it will also deal with centering your content.
It may be of interest to you but Kevin Powell has a good tutorial on this solution. Other than these minor things, you did an excellent job, well done. :)
Most proud of the fact that I completed this challenge in under an hour, although I was aiming for 30 minutes. My emmet usage and skills has improved significantly which pleases me and i'm nearly there on remembering how to use favicons
What specific areas of your project would you like help with?Writing the box shadows and how I can use pseudo elements like ::before for the box shadows
Can you please leave some useful feedback @AVARUSJOSE , I don't think you've understood the point of the site and the feedback function. Everytime you finish a challenge you're supposed to leave some constructive feedback about how the other person can improve instead of post good job etc so that you can move on in the learning paths.
An excellent attempt, well done. Here's how to improve your solution:
<div>
such as <article>
to improve semantics and accessibility.html,
body {
margin: 0;
width: 100%;
height: 100%;
display: grid;
place-items: center;
}
This also includes some resets that you should be performing
grid-template-areas: "one two three" "four five six";
then add grid-row: span 2;
to your rows that need to span two or more rows and change the grid-area to be of this syntax grid-area: one / four;
. This works as the text doesn't need to follow the same grid shape as the cards.Well done though, an excellent attempt :)
An excellent attempt, well done. Here's how you can do better:
display: flex; align-items: center; justify-content: center;
Your media query's are very well written, and the attempt extremely polished, well done :)
Eu me orgulho de conseguir ter feito de forma que ficasse igual/quase igual, e também por ter ficado bonito. Tentaria fazer de outras comidas e usar variedade de cores.
What challenges did you encounter, and how did you overcome them?Quase não encontrei desafio. Porem tive uma quebra de cabeça com umas das folhas de estilo que criei que estava atrapalhando a responsividade da página.
An excellent attempt, just a couple of small tweaks:
Other than that, well done
I loved the images and the style guides that frontendmentor provided. That makes my progress very smooth.
What challenges did you encounter, and how did you overcome them?Once i finished the project, the first idea comes into my mind was to add social media icons, but i changed my mind and i replaced a better hover animation.
What specific areas of your project would you like help with?Once i finished the project i deleted all pre-installed fonts, assets and all un-wanted things, so i would like to know if that was a mistake!
First off, excellent job, your site and animations look amazing.
Deleting unused assets and fonts is absolutely valid. If they're not going to be used by the browser, why keep them?
Social media icons would be an excellent idea however your hover animation is already amazing, don't let the enemy be the perfection of good.
<img src="./assets/images/avatar-jessica.jpeg" alt="">
Try to always inhclude alt's for every picture you include. Sometimes images won't load and then users will be staring at nothing, not knowing what the image should show.
For your links, you've written a lot of CSS code, it could've been achieved using the same effects using a grid/flexbox. For example:
.media {
display: grid;
grid-auto-columns: 1fr;
gap: 20px;
width: 100%;
}
Would have achieved mostly the same thing
An excellent attempt at the challenge, good semantics and CSS, only criticism is the difference in word wrapping (assuming you're going for picture perfection)
The button also appears to have some left and bottom padding in the original screenshot wheras your design does not account for this.