Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
I a m proud of improving myself in form validation using JS. Next time I try form validation using CSS.
What challenges did you encounter, and how did you overcome them?DDuring Writing conditions for validation. But the articles helped me out.
What specific areas of your project would you like help with?I want help with the image align-alignment for mobile and responsive also.
Community feedback
- @tunaertenPosted 2 months ago
Overall, you've done a great job, congratulations! 👍
- For optimizing the layout for both mobile and desktop views, consider setting a
max-width
to maintain a consistent size. For images that need to adapt to different screen sizes, utilizing the<picture>
element is recommended. For instance:
<source media="(min-width: 768px)" srcset="{desktop image path here}"> <img src="{mobile image path here}" alt="{alternative text here}"> </picture> ``` - I was particularly impressed with the form section. To enhance realism, you could dynamically display the correctly entered email address using JavaScript, replacing the placeholder with the user's input. I wish you continued success in your future projects. ✌️
1 - For optimizing the layout for both mobile and desktop views, consider setting a
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