sign up card using Html and css

Solution retrospective
i learned lot of things in this project especially in css and i aligning the div at the correct position is difficult to me but I learned it.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @Zy8712
Hi there! Your site looks pretty good. A few things I noticed when looking through your code:
- for the "Why Us" box you should use an unordered list to list out all of the items. So something like this would work:
<ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul>
- when centering your box, you could use something like flexbox in the parent container. So in this case your body could be assigned:
body { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; }
- one last thing would be that you should wrap your page's content with
<main>
tags of accessibility purposes
Hope you find this feedback useful 👍
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord