-
Notifications
You must be signed in to change notification settings - Fork 38
L1 hw #23
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
base: main
Are you sure you want to change the base?
L1 hw #23
Conversation
idanpopovich8
left a comment
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.
i left you some code review inside.
NICE WORK!!!
| top: 50%; | ||
| left: 50%; | ||
| transform: translate(-50%, -50%); | ||
| width: 800px; |
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.
It’s not recommended — and even considered incorrect — to use fixed pixel sizes for a div. If the user changes their screen size, the entire layout can break
try to use percentages or Vh and Vw
|
|
||
|
|
||
| .container img { | ||
| width: 95%; |
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.
Nice job!
| } | ||
| .subbtn{ | ||
| display: flex; | ||
| width: 308px; |
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.
same comment as before
| <!-- Sign-up form start --> | ||
|
|
||
| Stay updated! | ||
| <!--Stay updated! |
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.
we dont leave our comments inside. its better just to delete them : )
| </style> | ||
| </head> | ||
| <body> | ||
| <body style="background-color: hsl(234, 29%, 20%);"> |
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.
Its better to move the styling to the style.css file.
Keep a single tag and move the background-color into the CSS instead of using an inline style attribute.
| </div> | ||
| <p>Join 60,000+ product managers receiving monthly updates on:</p> | ||
| <div class="options"> | ||
| <img class="opimg"src="assets/images/icon-list.svg"> |
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.
Missing alt artibute inside the img label
| <img class="opimg"src="assets/images/icon-list.svg"> | ||
| <span class="data"> Product discovery and building what matters</span><br> | ||
| <img class="opimg"src="assets/images/icon-list.svg"> | ||
| <span class="data"> Product discovery and building what matters</span><br> |
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.
All three bullet points currently show the same text, and class name data its not a good name.
try to be more creative next time.
| <img class="opimg"src="assets/images/icon-list.svg"> | ||
| <span class="data"> Product discovery and building what matters</span><br> | ||
| <img class="opimg"src="assets/images/icon-list.svg"> | ||
| <span class="data"> Product discovery and building what matters</span><br> |
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.
Its not best practice to work with br label for spacing, Consider using marging it will fits good for your needs.
No description provided.