I am new in Web Dev , All your help and suggestions are welcome .
Kinga Miśkiewicz
@codingbearyAll comments
- @gaurangsaini01Submitted over 1 year ago@codingbearyPosted over 1 year ago
Hi! Great work!
I have a few tips how you can improve this project :)
- You can put the attribution into a footer for better semantics (it help screen readers, search engines etc understand your website better, because the div itself doesn't have any semantic value)
- You're using different font that the one in the design, but you can fix it by finding this particular font on google fonts (you can find it's name in the starter pack in a file called "style guide"). If you have troubles with importing the font, let me know, I'll help you do it :)
In general you did a really great work, keep it up! I hope my tips were helpful! :)
Marked as helpful0 - @Levi-ikechukwuSubmitted over 1 year ago
I stand to be corrected if I did anything wrong. I'll appreciate that a lot 💜 Thanks guys ❤️
@codingbearyPosted over 1 year agoHi! You did great! :) I have a few tips for you how you can improve this project:
- You can use exactly the same background colour as the one in the design by using colour picker or you can find this value in the starter code itself in a file called "style guide" (or something similar, I don't remember exactly, but if you have trouble finding it let me know, I'll check it for you :)
- To center your project perfectly you can use: body{ display: flex; justify-content: center; align-items: center; min-height:100vh; }
- I can see you have a bit too much white space on the bottom of the card, but you can fix it by removing height: 70vh. from your container
- Remember about using semantic tags like <header> <main> etc. for better accessibility. You can find all information about semantic HTML here: https://www.w3schools.com/html/html5_semantic_elements.asp It's important to use proper semantics in HTML to make sure search engines and screen readers don't have problem with understanding the contents of your page. :)
I hope those tips were helpful :) Great work btw, keep it up! :)
Marked as helpful3 - @abelkm99Submitted over 1 year ago
This was the second solution that I've done from the frontend mentor and forgot to publish it. I've been using pixels and height and other stuff. There is always room for improvement so it would be nice to get feedback on what I should have done or what I should fix in the future and best practices as well😊.
@codingbearyPosted over 1 year agoHi! :) Your solution looks great, but I have a few suggestions :)
- Remember your HTML should be semantic which means it should have <main> section and a <footer> so it's easier to read by the browser and therefore is accessible to more people. :)
- I think you didn't add shadow boxes to the button and to the card itself so keep in mind to follow the design as close as possible :)
Overall your solution looks great! Keep coding :) I hope you find those tips helpful :)
1 - @AlexMercer4Submitted over 1 year ago
Even though this project does not require responsiveness, but I still tried to do it anyway but I don't have much experience there for I could not do it. I hope that by doing more projects I will be create responsive and awasome websie.
@codingbearyPosted over 1 year agoHi! :) The solution looks great but I would recommend improving a few things.
- Accessibility - you should add <main> section and <footer> so browsers can read your code better. Read about semantics in HTML :)
- To center the app perfectly you can wrap it into container and then from CSS add .container { display: flex; justify-content: center; align-items: center; min-height: 100vh; }
- Best practice is to write your HTML and CSS in separate files so keep that in mind :)
- In terms of responsiveness there is nothing to work with in this project because it's small by default
- I think you're using different font so remember to import fonts you want to use into your HTML :)
I hope those tips were helpful :)
Marked as helpful1