Daniel Dominguez
@dominguez-danielAll comments
- @eldmarP@dominguez-daniel
Very clean!
- @AtatraWhat are you most proud of, and what would you do differently next time?
I realize how much I prefer vanilla CSS over TailwindCSS.
P@dominguez-danielAwesome job, HTML looks very semantic and styles are nicely organized.
- @Gideon-wP@dominguez-daniel
Hi
@Gideon-w
,Your HTML will marked-up up well - rather than using
div
for the card, anarticle
would better resemble these independents bits of content.Marked as helpful - @helenhappWhat are you most proud of, and what would you do differently next time?
I tried my best to make it look good on different screen sizes, and to make it close to the design, paying attention to all the details.
P@dominguez-danielHi
@helenhapp
, your markup is clean and semantic, nice work! - @Hackerbot24What are you most proud of, and what would you do differently next time?
I'm proud of completing this challenge, i plan to do any thing i am been corrected about differently.
What challenges did you encounter, and how did you overcome them?I encounter a problem while uploading the website, but i watch few toturials online to rctify.
What specific areas of your project would you like help with?i am open to leaning every area of it.to know more
- P@Rashid0101What challenges did you encounter, and how did you overcome them?
Hi there 👋, I’m Rashid and this is my solution for this challenge. 🚀
Any suggestions on how I can improve and reduce unnecessary code are welcome!
Thank you. 😊
P@dominguez-danielHi
@Rashid0101
, overall your solution is solid, I really like the css reset you used.Marked as helpful - @abedhousaryP@dominguez-daniel
Hi
@abedhousary
I noticed a few things about your solution I though would be good to note:- Visually, the card's padding seems to be a little off along with the overall flow of the content.
- on smaller screen sizes, the content overlaps with each other
- from a semantic html perspective, the entire card is written using
div
element rather than semantic elements. This can cause accessibility issues.
I hope this helps! -cheers
- @Rakesh4688P@dominguez-daniel
Hi
@Rakesh4688
, a few comments about your submission:- From a semantic HTML perspective, I think an
article
tag is more descriptive than adiv
tag -div
tags are generic. - I also noticed the paragraph is missing the first word 'Scan'.
- Visually, the card's width seems smaller than the design, typically the container should be the width of the content it contains, you can give the content a
max-width
without hardcoding a specificwidth
.
- From a semantic HTML perspective, I think an