
Design comparison
SolutionDesign
Community feedback
- @alaa-mekibesPosted 2 months ago
Well done
Just change your img path to
assets\images\illustration-article.svg
like this:<img src="assets\images\illustration-article.svg" alt="YOUR ALT"
- I recommend seperating your css code to another file (ex:
style.css
), and link it with html using:
<link rel="stylesheet" href="YOUR PATH HERE">
-
Update Your README File Start by using the provided README template included in the starter file.
-
Center your design using grid or flexbox:
body { display: grid; place-items: center; min-height: 100vh; }
OR flexbox:
body { display: flex; justify-content : center; align-items : center; min-height: 100vh; }
min-height: 100vh
is to get full-screen.Marked as helpful0 - I recommend seperating your css code to another file (ex:
Please log in to post a comment
Log in with GitHubJoin 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