Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Your session has expired please log in again.
Your session has expired please log in again.
Your session has expired please log in again.
Your session has expired please log in again.
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Results Summary Component

Meziztoβ€’ 270

@Mezizto

Desktop design screenshot for the Results summary component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


The result list decided to solve with table tag. Do not have any good explanation why I did it. Just wanted to see how to modify tables. As a total newbie it took 3-4 days. A lot of googling and playing around with different properties. Also struggled to get both sides width and height equal.

Community feedback

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

@0xabdulkhaliq

Posted

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

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

BODY MEASUREMENTS πŸ“:

  • The width: 100% property for body is not necessary. because it's a block level element which will take the full width of the page by default.
  • So feel free to remove width: 100% style rule from body this will help you to write efficient code and makes your code more reusable.

.

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

Happy coding!

0
Sachinβ€’ 830

@Sachin-Mahato

Posted

Well done for finishing the challenge.

As a front-end developer, your primary task is to transform the designer's visual concept into a functional website. The objective is to ensure that the final website closely resembles the original design. However, if there are noticeable differences between the website and the intended design, it's important to address this issue.Use the build-in frontend Mentor design comparison tool.

1. Lack of semantic HTML:

  • Semantic HTML elements are missing or not used appropriately.
  • The structure does not convey the meaning and purpose of different parts of the webpage.

-.Every site should ALWAYS have βœ… a main element not only for semantic purposes but also to help assistive technology find the main content of your content. For this challenge, it will serve as the component’s container ⚠️.

--

More info

.Avoid skipping heading levels ⚠️.

  • Always start with the h1 (which can only be used once) and you will go down the hierarchy level depending on the heading’s level of importance.

More info

.Usage of absolute units instead of relative units:

  • Absolute units like pixels (px) are used for defining lengths and sizes instead of relative units like percentages (%), em, or rem.
  • Relative units are more flexible and responsive across different screen sizes.

More-details

Your CSS Reset is being underutilized. 😒 To fully maximize πŸ’― it, you will want to add more to it. Here are some examples that you can freely use 😁: Josh Comeau Reset Eric Meyer Reset

For improved accessibility πŸ“ˆ for your content, it is best practice to use em βœ… for media queries. Using this unit gives users the ability to scale elements up and down, relative to a set value use this link to learn about media queries

more info

I hope you find this helpful and happy coding.

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