I used basic CSS properties. Please give me feedback if anyone has a better approach to creating this app.
Nikhil Reddy
@NikhilReddyMandaAll comments
- @AdiBhootraSubmitted over 1 year ago@NikhilReddyMandaPosted over 1 year ago
Hey there π Congrats on completing the project.
Suggestions to improve it:
- Change the background color of the body. You can find in the
style-guide.md
file. - Import Fonts. You can find in the
style-guide.md
file. - Change the colors of the text.
- Add a shadow at the bottom of the box.
Hope this helpsβ¨. Happy Codingπ
0 - Change the background color of the body. You can find in the
- @IceMan0DSubmitted over 1 year ago
Feedback welcome.
@NikhilReddyMandaPosted over 1 year agoHey there π. Your projects look great! I have a few suggestions though:
- Decrease the width of the image.
- Decrease the width of the text conatiner.
- Picture Tag π·
-
Looks like you're currently using single image for both Desktop & Mobile devices, but we want to swap images according to their screen sizes. Luckily there's a native html element which may help us to achieve this method without need of css
-
So let me introduce the picture element.
-
The
<picture>
tag is commonly used for responsive images, where different image sources are provided for different screen sizes and devices, and for art direction, where different images are used for different contexts or layouts. Example:
<picture> <source media="(max-width: 768px)" srcset="small-image.jpg"> <source media="(min-width: 769px)" srcset="large-image.jpg"> <img src="fallback-image.jpg" alt="Example image"> </picture>
-
In this example, the <picture> tag contains three child elements: two
<source>
elements and an<img>
element. The<source>
elements specifies different image sources and the conditions under which they should be used. -
Using this approach allows you to provide different images for different screen sizes without relying on CSS, and it also helps to improve page load times by reducing the size of the images that are served to the user.
Happy Coding! π
Marked as helpful1 - @alvarnydevSubmitted over 1 year ago@NikhilReddyMandaPosted over 1 year ago
Hey there π. Your project looks great! I have a few suggestions though
- Change the colors of your text. If you observe the solution, heading text is in a bluish color and the description is in greyish color.
- Make your card component little bit bigger then it will perfectly match the solution.
- I recommend increasing the font size of the heading to make it look similar to the solution.
Hope this helps β¨. Happy coding
Marked as helpful1