Design comparison
Solution retrospective
Next time I am going to do better projects than this one!
What challenges did you encounter, and how did you overcome them?Umm, I faced some problems. For example, when I tried to deploy this project, the browser showed a security error. That's it.
Community feedback
- @huyphan2210Posted about 1 month ago
Hi, @sinasami000
I’m not seeing the security error in the browser as you mentioned, but there is a 404 error.
This is happening because the HTML file can’t find
favicon-32x32.png
in your application. If you check yourindex.html
, you'll see a line in the<head>
tag:<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
. This points to thefavicon-32x32.png
file.To resolve the issue, either add a
favicon-32x32.png
to the specified path or remove the line altogether.Hope this helps!
Marked as helpful1@sinasami000Posted about 1 month ago@huyphan2210 thank you very much, brother. I will try to solve these problems.
1 - @MikDra1Posted about 1 month ago
-
To make your card easily responsive, try using the following method:
.card { width: 90%; max-width: 37.5rem; }
On smaller screens, the card will occupy 90% of its parent (such as the body), but once it reaches 37.5rem (600px), it will remain at that width.
To center the card, you can use this code:
.container { display: grid; place-items: center; min-height: 100vh; }
I hope this tip was useful to you! 💗💗💗
Great work, and keep it up! 😁😊😉
Marked as helpful1@sinasami000Posted about 1 month ago@MikDra1 Thank you, bro. It's beneficial, and I will try to solve these problems.
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