Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Request path contains unescaped characters
Request path contains unescaped characters
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Fylo landing page with two column layout

@CarlTheBeginner

Desktop design screenshot for the Fylo landing page with two column layout coding challenge

This is a solution for...

  • HTML
  • CSS
2junior
View challenge

Design comparison


SolutionDesign

Solution retrospective


I used mobile first web design.

Community feedback

PhoenixDev22 16,950

@PhoenixDev22

Posted

Hi Carl Eder P. Ballenas,

Congratulation on completing this frontend mentor challenge. Your solution looks great. I have some suggestions regarding your solution:

HTML

  • If you are going to leave the logo not wrapped by <a>, it’s better to place it out the <nav> as it does not navigate the user in anywhere(only an image).
  • Forms with proper inputs and labels are much easier for people to use. To pair the label and input, one way is an explicit label’s for attribute value must match its input’s id value. Input fields without accompanying labels can lead to accessibility issues for those who rely on screen readers. If a screen reader comes across an input field without a label it will try to find some accompanying text to use as the label. (To hide the label visually but present for assistive technology, you may use sr-only class ).
  • Profile images like that avatar are valuable content images, not decorative .For the alternate text of the avatar testimonial should not be avatar-testimonial. You can use the avatar’s name alt=" kyle burton".
  • You may use like to use <address> tag to wrap the contact information class="contact" for the author/owner of a document or an article (email and phone number). By adding semantic tags to your document, you provide additional information about the document, which aids in communication.
  • When you use the<nav > landmark to wrap the footer navigation instead of <article> , you should add aria-label=”secondary “ or aria-label=”footer” to it . A brief description of the purpose of the navigation, omitting the term "navigation", as the screen reader will read both the role and the contents of the label. Thenav element in the header could use an aria-label="primary" or aria-label=”main” attribute on it. The reason for this is that, you should add the aria-label for a nav element if you are using the nav more than once on the page.You can read more in MDN
  • Links must have discernible text. The social links wrapping the icons must have aria-label or sr-only text indicate where the link will take the user. Your icons are purely decorative, you'll need to manually add an aria-hidden attribute to each of your icons.

Aside these, you did great work. Hopefully this feedback helps.

Marked as helpful

0

@CarlTheBeginner

Posted

@PhoenixDev22 I applied what you said about aria-label it worked! I have no accessibility issues. Thank you! check the website repo on my Github.

0

@Ilesanmiea

Posted

Carl, I am amazed with your works. I took my time to review your code. I liked the way you wrote the codes, the custom CSS, the way you commented your codes, the way you analyze everything.

Cudos and God bless you. Keep improving

0

Please log in to post a comment

Log in with GitHub
Discord logo

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