-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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 #5622
base: master
Are you sure you want to change the base?
add task solution #5622
Conversation
JosielLinhar
commented
Oct 30, 2024
- 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.
Great job on meeting most of the task requirements! 🎉 While there are a few minor issues, such as the use of tag names in CSS selectors and the placeholder href
attributes, these do not critically impact the functionality. Keep up the good work and consider these suggestions for future improvements! 😊
✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨
<link | ||
rel="preconnect" | ||
href="https://fonts.googleapis.com" | ||
/> | ||
<link | ||
rel="preconnect" | ||
href="https://fonts.gstatic.com" |
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.
Consider adding the 'crossorigin' attribute to the 'preconnect' links for Google Fonts to improve performance. Example: <link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>
.
<h1>Moyo header</h1> | ||
<header class="header"> | ||
<a | ||
href="#" |
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 is currently set to '#', which is a placeholder. Consider updating it to the actual URL if available.
<li class="list-item"> | ||
<a | ||
class="is-active item-link" | ||
href="#" |
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 is currently set to '#', which is a placeholder. Consider updating it to the actual URL if available.
<li class="list-item"> | ||
<a | ||
class="item-link" | ||
href="#" |
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 is currently set to '#', which is a placeholder. Consider updating it to the actual URL if available.
<li class="list-item"> | ||
<a | ||
class="item-link" | ||
href="#" |
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 is currently set to '#', which is a placeholder. Consider updating it to the actual URL if available.
<li class="list-item"> | ||
<a | ||
class="item-link" | ||
href="#" |
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 is currently set to '#', which is a placeholder. Consider updating it to the actual URL if available.
<li class="list-item"> | ||
<a | ||
class="item-link" | ||
href="#" |
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 is currently set to '#', which is a placeholder. Consider updating it to the actual URL if available.
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
font-size: 100%; |
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.
Setting 'font-size: 100%' in the reset styles is generally fine, but be aware that it might not be necessary for all elements. Consider if this is needed for every element listed.
padding: 0; | ||
border: 0; | ||
font-size: 100%; | ||
box-sizing: border-box; |
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 'box-sizing: border-box' is a good practice for layout consistency, but ensure that it doesn't conflict with any specific design requirements you might have.
display: flex; | ||
align-items: center; | ||
height: 60px; | ||
font-family: Roboto, sans-serif; |
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.
Ensure that the 'Roboto' font is correctly loaded in your HTML file. This is crucial for the font-family declaration to work as expected.