Design comparison
Solution retrospective
I open for every comment.
Community feedback
- @danielmrz-devPosted 10 months ago
Hello @mehalimes!
You did a very good job there!
I have a very simple suggestion for improvement:
- Since the button is a clickable element, it's nice to add
cursor: pointer
to it.
π This gives the user one more visual indication that the element is clickable, as obvious as it may look.
I hope it helps!
Other than that, you did a great job!
0 - Since the button is a clickable element, it's nice to add
- @rayaattaPosted 10 months ago
Hello π Mehmet Ali MEΕE, congratulations on completing this challenge π.
I have some bits of advice for you
1 Let me introduce you to the Mobile-first workflow
The mobile-first workflow refers to a design approach where websites or applications are designed for mobile devices initially, and then adapted for larger screens such as tablets and desktops. This is due to the increasing number of people accessing the internet on their mobile devices, making it essential to prioritize mobile user experience.
Importance of the mobile first work flow
Responsiveness:. Websites or applications should be developed to automatically adjust their layout and content to fit different screen sizes. This ensures optimal user experience regardless of the device being used. You can learn more about it here
2 Try to make your html more Semantic by wrapping the main page content inside a
<main>
tag . Replace<div id="container">
With<main id="container">
. This changes nothing visually but Using it makes all the difference. Using semantic markup improvesSEO
And user experience (accessibility) for people using assistive technology such as screen readers.
I hope this helps π
Your solution looks great π
Happy coding βοΈ
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord