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

Master / Develop #6066

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open

Master / Develop #6066

wants to merge 6 commits into from

Conversation

YMolchanov
Copy link

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.


Hello! 😊 You've done a great job on your code, and it's clear you've put a lot of effort into meeting the task requirements. However, there are a couple of critical issues that need to be addressed before we can approve the pull request:

  1. Anchor Tag href Attribute: The href attribute in the anchor tag for the logo uses #Home!, which is unconventional and might not work as intended for navigation. It's important to use a valid URL or an appropriate anchor reference, such as #home, to ensure proper functionality.

  2. CSS Property on List Element: The text-decoration: none; property is applied to the .nav_list, which is a list element. This property is typically used for links (<a> tags) and is unnecessary for list elements. Removing this will help clean up the CSS.

Once these issues are resolved, your code will be in great shape! Keep up the fantastic work, and feel free to reach out if you have any questions or need further assistance. 🌟

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨

🔄 Fix the issues, commit the changes, and then re-request my review using the Re-request review button in the Reviewers tab.

src/index.html Outdated
<h1>Moyo header</h1>
<header class="header">
<a
href="#Home!"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The href attribute in the anchor tag for the logo uses #Home!, which is unconventional. Typically, href should point to a valid URL or an anchor within the page. Consider changing it to #home or a valid URL.

src/style.css Outdated
.nav_list {
display: flex;
list-style: none;
text-decoration: none;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The text-decoration: none; property is applied to .nav_list, which is a list element. This property is typically used for links (<a> tags) and not necessary for list elements. Consider removing it.

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 progress! 🎉 While your code is mostly well-structured, there are a few areas that need attention to enhance functionality and adhere to best practices:

  1. Anchor Tag href Attribute: The href attribute in the anchor tag for the logo is using #home!, which is unconventional and might not work as intended for navigation. Please correct it to a valid URL or an appropriate anchor reference, such as #home.

  2. CSS Property on List Element: The text-decoration: none; property is applied to the .nav_list, which is unnecessary for list elements. This property is typically used for links (<a> tags). Consider removing it to clean up the CSS.

  3. CSS Variable for Blue Color: Remember to define a CSS variable for the blue color and use it in your styles to meet the requirements.

  4. HTML Formatting: Ensure your HTML formatting follows guidelines, such as using 2 spaces for indentation and keeping lines of code to a maximum of 80 characters.

Despite these issues, your use of semantic tags and fallback fonts is commendable. The decision to approve your pull request is made to help you move forward with your learning journey. Please review the comments and address these points to improve your code. Keep up the good work and continue learning from these experiences! 🚀

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨

<h1>Moyo header</h1>
<header class="header">
<a
href="#home!"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The href attribute in the anchor tag uses #home!, which is unconventional. Consider using a valid URL or an appropriate anchor reference, such as #home, to ensure proper navigation functionality.


.nav_list {
display: flex;
list-style: none;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The text-decoration: none; property is applied to the .nav_list, which is a list element. This property is typically used for links (<a> tags) and is unnecessary for list elements. Consider removing it to clean up the CSS.

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