Abdulrhman Mohamed Soliman
@AbdulrhmanSolimanAll comments
- @zakaria-baliSubmitted over 1 year ago@AbdulrhmanSolimanPosted over 1 year ago
@zakaria-bali
Congrats on completing this challenge and for you awesome solution and tweaks.
- I suggest you to make your code more cleaner by using semantic HTML elements such as
<main>
. - Try to link design fonts in the very top of your CSS file for example
@import url('https://fonts.googleapis.com/css2?family=Outfit&display=swap');
instead of link it to the HTML file. - Also don't forget to use
em
&rem
instead ofpx
.
Happy Coding
I wish you all the best.
0 - I suggest you to make your code more cleaner by using semantic HTML elements such as
- @0xabdulkhaliqSubmitted almost 2 years ago
Mobile First π± > π₯
- Nothing to complicated, layout was built with CSS Grid and Flex.
All feedback is greatly appreciated!
TWEAKS π
- Smooth zoom-in transition while hovering the card
@AbdulrhmanSolimanPosted almost 2 years agoHello @0xAbdulKhalid, congrats on completing this challenge and for your awesome solution.
I suggest you setting the effect of the hover (scale) to the
<picture>
HTML tag element, because the scale property should relate only with the image when hovering on it.I hope you find it helpful.π
Happy Coding
0 - @stefanappdevSubmitted almost 2 years ago
can someone tell me how to do this better? most importantly how to use media queries to make designs more responsive . Also please rate what i did so far
@AbdulrhmanSolimanPosted almost 2 years agoHello @stefanappdev, congratulation on completing your first challenge.
here are some tips to improve your code.
First: To fix the issues of the reporter
- All
<img>
HTML tags should contain analt
. - Your code should contain at least one
<main>
HTML tags which include your actual code.
Second: concerning your design you should make the as follows
- Set a width and height to the container of the design/
- Apply the
background-color
property to the<body>
HTML tag - Reset and render all objects to remove default margin of the element using this code snippet
*{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; margin: 0; }
Happy coding
Marked as helpful0 - All
- @mselim7Submitted almost 2 years ago@AbdulrhmanSolimanPosted almost 2 years ago
Hello, @mselim7 congratulation on completing this challenge.
Here are some feedbacks to improve your code.
First
You should link you CSS file within the HTML
Head
tag. learn more hereSecond
To make the design centralized vertically and horizontally or to make it in the middle of the screen you should apply these Syltes below in the HTML
body
tagmargin: 0; display: flex; height: 100vh; flex-direction: column; justify-content: center; align-items: center;
Finally
Keep going my friend and practice more. I remember that when I started coding I'm getting some similar issues.
Marked as helpful2