Latest solutions
Latest comments
- @nikhil-987Submitted 3 months ago@savalaram-redkarPosted 3 months ago
-
While your solution uses Flexbox, the card is not perfectly centered in the middle of the viewport as per the Figma designs. The card should have equal spacing around it both vertically and horizontally. Consider ensuring the justify-content and align-items properties are set correctly on the parent container and that the height of the container spans the full viewport (height: 100vh).
-
Instead of using a <p> tag for the title, use a heading tag like <h1> or <h2>. This is more semantically appropriate and improves accessibility for screen readers.
-
Avoid inline styles and keep all styles within the CSS file for better maintainability.
0 -