A perfect challenge for beginners

Solution retrospective
This is my solution for the Huddle landing page.
- Feel free to leave any feedback about my solution.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @PhoenixDev22
Hi Mohamed Khaled,
Another great solution. I have some suggestions regarding your solution:
- The alternate text of the logo should not be
Main Logo
, it may set alt=”Huddle". Use the website's name as an alternate text.Remember that a website-logo is one of the most meaningful images on a site so use proper alt for it.
- For social links
class="social"
, the icons are decorative, so you should addaria-hidden=”true”
to the icons, to be ignored by screen readers and to avoid redundancy and repetition.
- Adding
rel="noopener"
orrel="noreferrer"
totarget="_blank"
links. When you link to a page on another site usingtarget=”_blank” attribute
, you can expose your site to performance and security issues.
Hopefully this feedback helps.
Marked as helpful - The alternate text of the logo should not be
- @DavidMorgade
Hello Mohamed, congrats on finishing the challenge, pretty good job and it looks that your page is fully responsive, great!
If you don't mind I would like to give you some feedback.
It would make your application look smoother and more beautifull if you add some transitions on your buttons and social media icons when hovering, you could add something like
transition: all 0.5s ease;
, remember to add them inside the class and not in the:hover
pseudoclass, I think this is just a little change but will be a boost for the user experience.Also would recommend you to use more semantic tags like
section
orarticle
instead of just dividing all of your main withdivs
, it will boost the accesibility of your page and also the search engines will position your web better.Hope my feedback helps you, great job and keep it going, almost pixel perfect!
Marked as helpful - @AdamMzkr
Good Job but, in mobile view your design as a little bit to big. To see all content you need to scroll horizontally. I think change width container to 90% will help.
Marked as helpful
Join 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