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 #5622

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

Conversation

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

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! ✨

Comment on lines +15 to +21
<link
rel="preconnect"
href="https://fonts.googleapis.com"
/>
<link
rel="preconnect"
href="https://fonts.gstatic.com"

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="#"

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="#"

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="#"

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="#"

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="#"

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="#"

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%;

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;

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;

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.

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