Yoga
@yogskrAll comments
- @FlackoCodesSubmitted 9 months ago@yogskrPosted 9 months ago
Heyo Joe, this is a cool landing page. Great job with the design!
I will only comment one thing about the font style though. It'd be great if you match the font size, the font's element length, and font alignment with the design.
Happy coding for other projects!
Marked as helpful1 - @FlackoCodesSubmitted 9 months ago@yogskrPosted 9 months ago
Hey Joe...let me give you feedback here.
Your landing page looks great. It's also great that you already implement the mobile-first design workflow.
Generally, my feedback is to re-touch some elements to match the design.
Also, I will only point out several things:
- It would be great if you implement
cursor: pointer
to the Try It Free button to make it look like an actual button. You can also useselector:hover
and apply some effects when you hover it. - Consider giving some
gap
ormargin
to these containers: Grow Together, Flowing Conversations, and Your Users. - The CTA section should be bigger, I guess, according to the design.
- The social buttons should be a bit to the top too.
Overall, your design looks great and as always, your code is easy to read. Keep this up, man!
Marked as helpful1 - It would be great if you implement
- @AigoooooSubmitted 11 months ago@yogskrPosted 11 months ago
Hi, Aigooooo! Great job for completing the project.
That said, you could improve your code on several aspects:
- I recommend using semantic HTML structure. For example, instead of using
<div class="container">
, you could use<main class="container">
. - Still regarding semantic HTML, I would use
<h1>
instead of<h2>
for the Improve your front-end skills by building projects text. - I recommend changing the image
src
with the provided image in/images/image-qr-code.png
rather than using<img src="https://raw.githubusercontent.com/Aigooooo/frontend-mentor-io-qr-code/master/images/image-qr-code.png" alt="image-qr-code" />
.
I hope the feedback can help you improve the code for this project. Keep it up and have a great one!
Marked as helpful1 - I recommend using semantic HTML structure. For example, instead of using
- @Abdelsalam-03Submitted 11 months ago@yogskrPosted 11 months ago
Hi, great job you have there to complete the challenge!
I have several suggestions for you:
- It'd be great to add a functionality to the Dismiss message on the success message modal.
- I recommend wrapping the text Join 60,000+ product managers receiving monthly updates on: with
<p>
tag. - Adding
alt
text to the images will help improve the accessibility.
I hope my suggestions help you in some way. Let's continue our journey!
Marked as helpful0 - @MyadVushkaSubmitted 11 months ago
What is the best way to create the FAQ div in this case? Is it require to be position: absolute? Give please the best ways to create it and to create an accordion
@yogskrPosted 11 months agoHey, the design looks great!
As for your question, I used
position: relative
and set thetop
to specificpx
. Therefore, the container stays where it is as we apply the 'accordion' functionality.Marked as helpful1