@Douoo
Posted
Hi there Paul, this looks like a great start, and I think your code works fine. But I'm not sure why you went with table instead of div for this specific challenge but I take it, you've your own reason. However, I do suggest that you use unordered list <ul> for the layout instead of a table as I believe its semantically wrong. According to MDN documentation, the <table> HTML element represents tabular data — that is, information presented in a two-dimensional table comprised of rows and columns of cells containing data. More info here.
You might also need to adjust the typography of the following element:
- Your result (on the left side of the card)
- of 100 (under the score - its too small)
Lastly, you might reduce the border radius on the button and also add a :hover
property on it. Additional to this, add cursor: pointer
on it as well.