-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Develop #4916
base: master
Are you sure you want to change the base?
Develop #4916
Conversation
Malvina-9
commented
Apr 30, 2024
•
edited
Loading
edited
- 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.
Good job, you almost there, just quickly fix few small comments and let me know, I'll approve the work!
src/index.html
Outdated
href="https://fonts.gstatic.com" | ||
/> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" |
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.
Evere font-weight here it's separate file for browser to download, so always include only those which you actually use. In code you have font-weight: 500
and 400 which is default for text.
src/style.css
Outdated
} | ||
|
||
.menu__link:hover { | ||
color: #00acdc; |
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.
Please, see the checklist
CSS Variable is used for a blue color
move it to a css variable
src/index.html
Outdated
class="menu__link menu__link:hover is-active" | ||
href="index.html" | ||
> | ||
APPLE |
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.
Small note
CSS is used to show all letters in Uppercase (don't type them in HTML)
box-sizing: border-box; | ||
} | ||
|
||
.header { |
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.
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.
src/index.html
Outdated
<a href="index.html"> | ||
<img | ||
src="images/logo.png" | ||
alt="moyo_1" |
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.
src/style.css
Outdated
@@ -1,3 +1,82 @@ | |||
* { |
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.
src/style.css
Outdated
} | ||
|
||
.header { | ||
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.
If you set this value for the whole page, it is better not to duplicate it.
src/style.css
Outdated
width: 100%; | ||
bottom: 0; | ||
height: 4px; | ||
background: #00acdc; |
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.
src/index.html
Outdated
<ul class="menu__list"> | ||
<li class="menu__item"> | ||
<a | ||
class="menu__link menu__link:hover is-active" |
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.
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.
well done 👍
</li> | ||
<li class="menu__item"> | ||
<a | ||
class="menu__link menu__link:hover" |
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.
class="menu__link menu__link:hover" | |
class="menu__link" |