-
Notifications
You must be signed in to change notification settings - Fork 5.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
Master / Develop #6066
base: master
Are you sure you want to change the base?
Master / Develop #6066
Conversation
YMolchanov
commented
Jan 31, 2025
- DEMO LINK
- TEST REPORT LINK
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.
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:
-
Anchor Tag
href
Attribute: Thehref
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. -
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!" |
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 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; |
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 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.
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 progress! 🎉 While your code is mostly well-structured, there are a few areas that need attention to enhance functionality and adhere to best practices:
-
Anchor Tag
href
Attribute: Thehref
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
. -
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. -
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.
-
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!" |
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 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; |
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 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.