Skip to content
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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

add task solution #4673

wants to merge 1 commit into from

Conversation

Dmy0
Copy link

@Dmy0 Dmy0 commented Dec 21, 2024

  • 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 from BEM lesson theory are checked.

  • Code follows all the Code Style Rules ❗️

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a 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! ✨

Comment on lines +20 to +23
<form
class="searchbar"
data-qa="big"
>

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>.

Comment on lines +31 to +34
<form
data-qa="small"
class="searchbar"
>

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;

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;

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants