Submitted almost 2 years ago
Responsive landing page with the aid of HTML and CSS, CSS MEDIA QUERY
@eneyedev
Design comparison
SolutionDesign
Community feedback
- @VCaramesPosted almost 2 years ago
Hey there! 👋 Here are some suggestions to help improve your code:
You project is not complete since their is no email validation.
- Add a JS file, to look for a
form
submission. You can useregex
to validate the email, it can look something like this:
form.addEventListener("submit", (e) => { e.preventDefault(); const regEx = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/; if (regEx.test(email.value)) { } else { } });
If you have any questions or need further clarification, feel free to reach out to me.
Happy Coding!🎄🎁
0@eneyedevPosted almost 2 years ago@vcarames To be Honest, have not learnt any backend language yet
0@VCaramesPosted almost 2 years ago@eneyedev
JS is front-end.
The FEM resource on the navbar can help you learn JS.
Marked as helpful0 - Add a JS file, to look for 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