Arpit Pandey
@ArpitTheSlayerAll comments
- @ernieJohnSubmitted 24 days ago@ArpitTheSlayerPosted 24 days ago
There are three problems with your code:
- You have set the height property of body tag to 100vh which is not good because it is making your website not show up how it should have. I think you were trying to use min-height property. Fix that.
- You only use Young Serif font for all the tags which is also not good. You should only use it for headings. For others use Outfit font.
- Your website is not responsive for mobiles, fix that as well.
Marked as helpful0 - @AnahsqiSubmitted 25 days agoWhat are you most proud of, and what would you do differently next time?
I am most proud of how I successfully implemented keyboard accessibility and transitions for the social links profile project.Next time, I would allocate more time to exploring advanced CSS transitions and animations. While I managed to implement basic transitions effectively.
What challenges did you encounter, and how did you overcome them?One of the main challenges was implementing effective keyboard accessibility for all interactive elements. I had to ensure that elements were easily navigable using the keyboard, which required careful adjustments to the tab focus outline to maintain aesthetics while providing clear visibility. To overcome this, I experimented with CSS properties for focus states, ensuring that the outline was both functional and visually appealing.
What specific areas of your project would you like help with?I would love feedback on my code structure and organization. Any suggestions for improving readability, maintainability, or following best practices in HTML and CSS would be invaluable.
@ArpitTheSlayerPosted 24 days agoYour website looks good in every way I know. I have nothing to pick about it.
0 - @izma13Submitted about 1 month ago@ArpitTheSlayerPosted about 1 month ago
I have only seen two problems with your code:
- The paragraph does have enough contrast ratio for users with bad eyesight.
- You used px unit in majority of your code and since it is absolute unit, it will make it almost impossible to change the font size of the browser and still keep the layout good for those who need to enlarge texts.
Use rem or em depending on situation for them. px should be used be only used when you need something to stay a fixed size no matter the font size the browser is using like the border of the card, box shadow of the card, etc.
Marked as helpful0 - @Sirjoy1Submitted about 1 month agoWhat are you most proud of, and what would you do differently next time?
FEEDBACKS ARE WELCOMED
@ArpitTheSlayerPosted about 1 month agoThere are three you can improve on:
- The box-shadow is too dark you should use a lighter color to make it less jarring. And the background color of the body is a bit too light, the color given by Frontend Mentor is better.
- The contrast ratio of the paragraph element is not good, you should make it darker for people with poor eyesight.
- In your css file there are many empty media queries that are not necessary. Remove them since they just confuse others who review your code and is generally not seen as good practice.
0