Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Testimonials Grid Section

@RegexRiddler

Desktop design screenshot for the Testimonials grid section coding challenge

This is a solution for...

  • HTML
  • CSS
2junior
View challenge

Design comparison


SolutionDesign

Solution retrospective


What are you most proud of, and what would you do differently next time?

Got the grid right and made it flow nicely through different screen sizes. Next time i would use SASS to make the CSS more readable.

What challenges did you encounter, and how did you overcome them?

CSS grids are still new to me so getting the layout right too a while.

What specific areas of your project would you like help with?

Any feedback is appreciated :)

Community feedback

Abdul Khaliq πŸš€β€’ 72,660

@0xabdulkhaliq

Posted

Hello there πŸ‘‹. Congratulations on successfully completing the challenge! πŸŽ‰

  • I have a suggestion regarding your code that I believe will be of great interest to you.

MAKING USERS BADGES ACCESSIBLE :

  • Currently the .user-badge part is not accessible,
<div class="user-badge">
  <img class="user-badge_image" src="./images/image-daniel.jpg" alt="profile picture">
  <div>
     <p class="user-badge_name">Daniel Clifford</p>
     <p class="user-badge_verification">Verified Graduate</p>
  </div>
</div>
  • It's an important part to which needs to be properly announced to users who using accessibility devices, To make it properly accessible we need to use figure element with pair of figcaption.
  • Here's the example markup using figure and figcaption,
<figure>
   <img class="user-badge_image" src="./images/image-daniel.jpg" alt="">

   <figcaption>
       <p class="user-badge_name">Daniel Clifford</p>
       <p class="user-badge_verification">Verified Graduate</p>
    </figcaption>
</figure>
  • If you have any questions or need further clarification then feel free to reach out to me.

.

I hope you find this helpful πŸ˜„ Above all, the solution you submitted is great !

Happy coding!

Marked as helpful

1

@RegexRiddler

Posted

@0xabdulkhalid Thank you for your feedback 😁

I have updated my code to reflect your suggestion.

0
T
Graceβ€’ 29,310

@grace-snow

Posted

@0xabdulkhalid sorry, that’s not true. Only the alt was causing a failure against WCAG accessibility standards (criterion 1.1.1). And that’s because the alt description didn’t actually describe the image.

Using a figure and figcaption has no bearing on the accessibility of this. If you were going to use figure elements in this challenge it would make more sense to use them for the whole box β€” the image, persons name and verified text would all go in the figcaption and then the blockquote would also go in the figure (outside of figcaption). But most screen readers and other assistive tech don’t announce figures/figcaption in any particular way.

1

@RegexRiddler

Posted

@grace-snow Hey Grace I've read up on the figure element and MDN wasn't too clear on the use of figure the way I have implemented it on the user image, name and "verification". Could you recommend me a source for learning more about accessibility and perhaps any tools for testing?

Also as a side question, could any of you @grace-snow and @0xabdulkhalid shed some light on why the text on my pages renders differently on the screenshot preview compared to my hosted web page and local environment?

0
T
Graceβ€’ 29,310

@grace-snow

Posted

@RegexRiddler like I said, the way you’ve used the figure element in this is not ideal at the moment. It's not causing a "problem" but it's not how the figure and figcaption is meant to be used. The name and verified text are not the caption of the image, they are actually acting as the caption (or heading) for the quote (which should be two paragraphs inside a blockquote element, not a h2 and paragraph).

Having the first sentence of each testimonial as a heading is a definite accessibility problem in my opinion, because it is using a heading for something that isn't heading content. That's part of the testimonial, not the title for it. If anything was acting as headings in this challenge it would be each person's name. (This would be a WCAG failure under 1.3.1 Info and Relationships if I was auditing the site).

The vast majority of accessibility knowledge comes from really considering the appropriate html for the content. That's almost all of it. Web.dev has an accessibility course now, there are sites like inclusive components, theA11yProject, HTML He'll, and many others. Plus there are good videos and blogs by Tetralogical, Nomensa, A11ycast, Craig Abbot, Patrick Lauk and others. The frontend mentor site lists loads of good resources on the resources page. You can also learn a lot just through using browser extensions like accessibility insights, which will give guides on exactly how to test and how to understand each accessibility requirement.

As for the font differences I expect those are to do with different browser rendering engines or something. I really wouldn't worry about it, it's not important.

Marked as helpful

1
Abdul Khaliq πŸš€β€’ 72,660

@0xabdulkhaliq

Posted

@grace-snow Thank you for guidance, After reading through your suggestion i came up with an example markup. Does this markup is accessible and structured properly?

<figure>
  <blockquote>
    <p>
      testimonial title 
      ... 
    </p>
    <p>
       testimonial quote 
       ...
     </p>
  </blockquote>
  <figcaption>
    <img src="./assets/images/image-daniel.jpg" alt="Daniel Clifford" />
    <div>
      <p>
        <span class="sr-only">Testimony Author</span>
        Daniel Clifford
      </p>
      <p>Verified Graduate</p>
    </div>
  </figcaption>
</figure>

If anything is wrong, then please let me know so I can make corrections on this one!

0
Abdul Khaliq πŸš€β€’ 72,660

@0xabdulkhaliq

Posted

"Why the text on my pages renders differently on the screenshot preview compared to my hosted web page and local environment?"

@RegexRiddler actually every browser such as Internet Explorer, Firefox, Chrome, and Safari, has a different layout engine, which alters the position and rendering of various components on a website such as the layout, text, and graphics.

If you really worried and want to fix it then i would recommend you to use Destyle a CSS Reset, It's nothing but a style sheet with list of rules that 'reset' all of the default browser styles.

To look how it works you can head on to the comparison page.

0
T
Graceβ€’ 29,310

@grace-snow

Posted

@0xabdulkhalid the dom order is the wrong way around in that example. The figcaption would need to come before the blockquote in this design.

0
Abdul Khaliq πŸš€β€’ 72,660

@0xabdulkhaliq

Posted

@grace-snow, I ordered in that way so that the quote could be announced first and then the author of quote will be announced.

Is this approach wrong?

0
T
Graceβ€’ 29,310

@grace-snow

Posted

@0xabdulkhalid yes because that differs from the visual order. The dom order needs to stay logical and sequential to match the visible display

0
Abdul Khaliq πŸš€β€’ 72,660

@0xabdulkhaliq

Posted

@grace-snow We can easily handle that using flex layout by reversing the column.

I hope you get it.

0
T
Graceβ€’ 29,310

@grace-snow

Posted

@0xabdulkhalid my point isn't about what you can acheive with css. It's about reading order which is a crucial aspect of accessibility. Screen readers will read in DOM order and if this does not match the visual order that causes a barrier to some users. (don't make the mistake of thinking all screen reader users are blind)

This would cause a failure against WCAG success criterion 1.3.2 Meaningful Sequence (level A).

0
Rubenβ€’ 580

@makihero

Posted

excelente trabajo veo que esta muy parecido al diseΓ±o original

0

@RegexRiddler

Posted

@makihero Thank you! I try to keep and eye for detail :)

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