Latest solutions
Latest comments
- @Carolkiarie@ABQ4539
Great work @Carolkiarie
- From what I see, the border radius on the image is not enough
img {border-radius: 10px;}
- Also as I learnt recently, it is better to implement CSS variables to make your CSS code more organized. It will look like this:
:root { --primary-color: value; --secondary-color: value; --tertiary-color: value; }
- And it will be used as this:
h1 { color: var(--secondary-color); }
You can learn more about CSS variables here
- From what I see, the border radius on the image is not enough