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

  • @MatomeGabriel

    Posted

    Hi, nice job, you can improve your QR code to be more accessible by wrapping your card with the main element, and using the article element as your card. e.g.

    <main>
      <article>
        <h1>Heading required</h1>
      </article>
    </main>
    

    and you can center your card both vertically and horizontally by using flexbox and set both the align-items and justify-content to center, but first you have to place your card in a container with a height of 100vh .e.g.

    .container{
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    0