rawatdinesh10
@rawatdinesh10All comments
- @SamuelGlez06Submitted about 2 months ago@rawatdinesh10Posted about 2 months ago
@SamuelGlez06 Your solution is completely different from design. Please make sure you complete the challenge as per the design files provided in the starter file. Startt doing the challenge from fundamental html and css. Check design files to see how you are going to build your project. Read the README.md file to get the help in completing the challenge. You can also go to Discord community and ask for help. first build the structure with html then create a seperate css file to apply css rules. Link this file to your html file by link tag. You can learn CSS Flexbox or Grid to complete this challenge from css-tricks.com and developer.mozilla..org. Good luck for your challenge!
0 - @justCaioDevSubmitted about 2 months agoWhat are you most proud of, and what would you do differently next time?
I'm proud because this time I used the React JS to do this challenge.
What specific areas of your project would you like help with?I accept tips on React JS because I'm just starting out, so I don't know much yet
@rawatdinesh10Posted about 2 months agoNice project! You have used React to complete the challenge, However you could complete the challenge with semantic HTML and CSS rules. This way you can understand HTML & CSS from basics and then move on to Libraries like React. I would recommend you to start doing challenges from basic HTML & CSS.
1 - @BlangisSubmitted 2 months agoWhat are you most proud of, and what would you do differently next time?
I'm proud of make this challenge very similar to the design, I must use less div's
What challenges did you encounter, and how did you overcome them?I had problems to fit the image in the correct way, I searched documentation online to learn about the correct settup
What specific areas of your project would you like help with?The correct use of the "div" to contain information, at the begginning I thought to use a div for the image, and another for the text but the adjust of elements was difficult
@rawatdinesh10Posted 2 months agoYou should not use display: flex property on child elements like you have used for the 'card' in your HTML code. Separate each child element in a containing <div> element. There is no id used in HTML code but you have used CSS style on id 'code_qr', please use id in HTML code and then style it accordingly, also there is an empty <div> in HTML code which should be removed.
0