-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add task solution #4673
base: master
Are you sure you want to change the base?
add task solution #4673
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great job on your submission! 🎉 While there are a couple of minor issues, such as the self-closing form tags and the invalid font-size
descriptor in the @font-face
rule, these do not significantly impact the functionality of your code. You've met the core requirements of the task, and your implementation is solid. Keep up the good work, and consider addressing these minor points in future projects to enhance your code quality even further! 😊
✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨
<form | ||
class="searchbar" | ||
data-qa="big" | ||
> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
HTML5 does not support self-closing form tags. You should use separate opening and closing tags for the form element, like <form>...</form>
.
<form | ||
data-qa="small" | ||
class="searchbar" | ||
> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similar to the previous form, this form tag should not be self-closing. Use <form>...</form>
instead.
font-family: Avenir; | ||
src: url('fonts/Avenir-Book.ttf') format('truetype'); | ||
font-weight: normal; | ||
font-size: normal; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The font-size
property is not a valid descriptor for @font-face
. You should remove this line as it does not affect the font loading.
font-family: Avenir; | ||
src: url('fonts/Avenir-Heavy.ttf') format('truetype'); | ||
font-weight: bold; | ||
font-size: normal; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similar to the previous @font-face
rule, the font-size
property is not valid here and should be removed.
DEMO LINK
TEST REPORT LINK
Icon implemented using background-image CSS property
Inputs are written inside of 'form' tag with correctly passed attributes
All
Typical Mistakes
fromBEM
lesson theory are checked.Code follows all the Code Style Rules ❗️