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

All comments

  • Abdulqaweeyu• 70

    @ABQ4539

    Posted

    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

    0