mobile first approach
What challenges did you encounter, and how did you overcome them?styling list bullet points
What specific areas of your project would you like help with?idk, open for any suggestions
mobile first approach
What challenges did you encounter, and how did you overcome them?styling list bullet points
What specific areas of your project would you like help with?idk, open for any suggestions
I wanted to commend you on the fantastic job you did with the omelette recipe project! The webpage looks exactly like the design specification, and the attention to detail is impressive. The layout is clean, the styling is spot on, and the responsiveness works perfectly across different devices.
I used ul and li in HTML. It wasn't new to me, but it was nice to recall and use the knowledge I had learned
What challenges did you encounter, and how did you overcome them?It wasn't a very challenging project. For me, it was like reviewing all my knowledge. I practiced and became more familiar with Figma
Great job on the social links profile card project! The overall design looks good, and you've done a commendable job with the hover effects and responsive layout.
To align the card at the center as the design specification you could also wrap the whole card in a div, give it a class of container and style it as follows:
.container { display: flex; justify-content: center; align-items: center; width: 100%; height: 100vh; }
That way you'll center the whole card
creating css code to minimize the lines
What challenges did you encounter, and how did you overcome them?center align the card
What specific areas of your project would you like help with?more practice in coding
Great job on developing the blog preview card! Your implementation matches the design, showing a strong attention to detail. The use of HTML and CSS is well-structured and effective, making the card both visually appealing and functional. Excellent work in bringing the design to life!
I was able to make the design as close to the ones given and i hope to keep improving.
What challenges did you encounter, and how did you overcome them?one of the challenges is about the container, how i can make them very responsive to different screen sizes. Nevertheless, i try my best to make it look as close as possible.
What specific areas of your project would you like help with?i would love to be helped on the use of css properties like media query. flexbox and grid and some function like calc(), to make responsive design and creating a known size of a container and how to center the container on the body element irrespective of various screen sizes and dimension.
Good work my fellow developer. I like how you approached and solved the problem, its awesome. I see you also mentioned of CSS's Flexbox in your review. I think its a good Idea using flexbox for general layout as it is easier when creating responsive layout. I have been using it in some of my personal projects and it has helped me a lot. Its awesome that you thought of that.