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

  • Mumina 110

    @MuminaA

    Posted

    • To properly center your content instead of having display: flex with justify-content: center use CSS grid within your body tag
    body {
        min-height: 100vh;
        display: grid;
        place-content: center;
    }
    
    • I recommend using a <del> tag to cross out the price that was before the discount.
    • I also recommend having 1 header tag ("Essence Eau De Perfum" being the h1 tag) then making everything else a p tag

    Marked as helpful

    1