Any tips on improving my HTML or CSS skills are greatly appreciated. Cheers :)
mslysz
@mslyszAll comments
- @NotYoelSubmitted 6 months agoWhat specific areas of your project would you like help with?@mslyszPosted 6 months ago
Fantastic replication of style and attention to detail! The logic flows seamlessly, contributing to a thoroughly enjoyable experience. Keep up the excellent work, and I wish you all the success moving forward!
1 - @MismistySubmitted about 1 year ago
I would appreciate any and all feedback on this challenge. I am most interested in feedback on my markup. Thanks.
@mslyszPosted about 1 year agoYou need to work on ways to validate, when we fill in one field e.g. Cardname holder and click the submit button then even though errors pop up to fill in the other fields, a window also appears indicating that our form has been submitted. In your validation, you must indicate that if even one input is not filled in correctly, the form cannot be sent. I recommend this video on Youtube: https://www.youtube.com/watch?v=In0nB0ABaUk where we have a very nice and quick explanation of how to create a validation form.
Also at this address, it is very well explained how to write validation js code: https://www.freecodecamp.org/news/form-validation-with-html5-and-javascript/
0 - @mslyszSubmitted over 1 year ago@mslyszPosted over 1 year ago
I had some problems with the JavaScript code that I could not jump over :( When I type an email in the input window the window changes color, it pops up saying that the email is invalid. But when I delete everything from the input all the styles remain changed and do not return to the basic appearance.
0 - @le2dySubmitted over 1 year ago
Q1. how to locate attribution text to bottom?
@mslyszPosted over 1 year agoWelcome. To place the attribution section at the bottom of the page instead of the static position use position: fixed in your CSS styles like this:
.attribution { position: fixed; bottom: 0; left: 0; right: 0; font-size: 11px; text-align: center; }
The element will be fixed perfectly at the bottom of the page. I hope I have helped. Kind regards.
Marked as helpful0