Design comparison
SolutionDesign
Community feedback
- @correlucasPosted about 2 years ago
👾Hello Dipendu Sur, congratulations for your new solution!
Your page is not displaying yet due an error with the deployment, you can check this error and update your page in the
solution panel
inserting the new link, this way we'll be able to help you.I've checked your repository and I've some tips regarding the html.
You can reduce a lot this html structure you've used by removing unnecessary divs, look the way you've built this:
<body> <div class="container"> <div class="card"> <img src="images/image-qr-code.png" alt=""> <div class="text"> <h2> Improve your front-end skills by building projects</h2> <p>Scan the QR code to visit Frontend Mentor and take your coding skills to the next level</p> </div> </div> </div>
Here’s a minimal html structure for this challenge:
<body> <main> <img src="./images/image-qr-code.png" alt="Qr Code Image" > <h1>Improve your front-end skills by building projects</h1> <p>Scan the QR code to visit Frontend Mentor and take your coding skills to the next level</p> </main> </body>
✌️ I hope this helps you and happy coding!
0 - @Pascal488Posted about 2 years ago
Fix your deployment issue a site is not shown at all..
0
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