Prince Roy
@iprinceroyyAll comments
- @LizzietrustSubmitted over 2 years ago@iprinceroyyPosted over 2 years ago
Hey @Lizzietrust, I would recommend seeing my solution to get an idea to structure the folder and files so that you can have your image.
0 - @sarvothamgowdaSubmitted over 2 years ago
- How to avoid vertical scrollbar?
Feedback welcome.
@iprinceroyyPosted over 2 years agoHey @sarvothamgowda, to avoid accessibility issues I would suggest some points here:
- Wrap the contents inside the main tag like this
<body> <main> Your content.... </main> </body>
- There should be one level heading h1, and if there's no requirement for the h1 element then set its font size to 0.
- HTML
CSS
h1{ font-size:0 }
I hope it adds to your learning, happy coding :)
Marked as helpful1 - @Alex6pcSubmitted over 2 years ago
Hello guys.
I will be glad, if you can give me advice how to improve my code.
Alex
@iprinceroyyPosted over 2 years agoGreat work @Alex6pc, I would suggest some points here :
- Use kabeb-case for the class name.
- Wrap the contents inside the main tag
<body> <main>Your contents..</main> </body
- Always use the relative unit rem.
- You can use CSS latest functions min(), max(), and clamp() for responsive fonts, margin, padding, and width.
- There should be the level one heading tag h1 if there's no requirement then set the font size to 0 to avoid accessibility issues.
I hope it adds to your learning, happy coding :)
Marked as helpful1 - @manishdevelopsSubmitted over 2 years ago
my first javascript project.. feel free to leave any feedback..
@iprinceroyyPosted over 2 years agoCongrats @Manish-d-art, on completing this solution 👏 I would suggest some points here to center the component:-
main{ min-height:100vh; align-items: center; } remove container style block, it's unnecessary as justify-content of the main tag will handle it.
After the updates, click on the generate screenshot button.
- I hope it adds to your learning. Happy coding :)
Marked as helpful0 - @elahemirzaeeSubmitted over 2 years ago@iprinceroyyPosted over 2 years ago
Hey @elahemirzaee, you did excellent work. Congrats!
You can prefer clamp property for h1 to make a responsive font for different devices & to match the design. You forgot to add the shadow property to the form element.
Instead of using the main class, you can use the main tag to avoid accessibility issues.
Hope it adds to your learning. Happy coding :)
Marked as helpful0 - @vanjuraSubmitted over 2 years ago@iprinceroyyPosted over 2 years ago
Hey @vanjura, you did great work. I would suggest some points here:
- Hover state is not working. You should add some HTML markup & CSS rules for it. You can prefer my solution for reference.
- img tag must have alt attributes for the people with disabilities.
- Always use relative units instead of px for better scalability. 1rem = 16px
I hope you find it helpful & it adds to your learning. Happy coding :)
0 - @PriyankaArikatla1205Submitted over 2 years ago@iprinceroyyPosted over 2 years ago
Hey @PriyankaArikatla1205, you did great work but you need to do some more stuff. So here are my points to be focused on
- Don't use id as a selector. It's a bad practice. Use class as a selector
- img tag must have alt attributes for the people with disabilities.
- Hover state is not working. You should add some HTML markup & CSS rules for it. You can prefer my solution for reference.
- Always use relative units instead of px for better scalability. 1rem = 16px
I hope you find it helpful & it adds to your learning. Happy coding :)
0 - @Wtyka2504Submitted over 2 years ago
I did it without figma, so it looks a little diffrent from the picture also I'm lazy :D
@iprinceroyyPosted over 2 years agoThat's excellent work @Wtyka2504. I would suggest some points here:
- You can use modern CSS features like clamp, min, and max for fluid typography, width, and padding. These are really helpful as the font size of some text/padding changes on different devices. If you look design-preview, you will observe it a different font size is being used for different viewports. Reference clamp
- For designing websites, there is semantic HTML markup that you should follow it. You can prefer my solutions it has zero issues.
- Footer logo is invisible, you can use the filter property on the logo to change its color. I've done it.
All others are perfect. I hope it adds to your learning. Happy coding :)
Marked as helpful1 - @withmohitjoshiSubmitted over 2 years ago@iprinceroyyPosted over 2 years ago
Hey @withmohitjoshi, excellent work. There are some quick fixes you need to work on
body{background-color: var(--pale-blue); background-size: cover; }
- You can't use h2 just because it suits font size either you can use the p tag or use the heading tag successively from h1 to h6, not jump directly to h2. So, replace h2 with h1.
I hope it adds to your learning. Happy Coding :)
0 - @EduardLucaciSubmitted over 2 years ago@iprinceroyyPosted over 2 years ago
Hey @EduardLucaci, Great work. You need to focus on some points here:
- Those avatar images with title, you can use figure & figcaption tag for that figcaption.
- Use the blockquote tag for quotes text.
- Use relative unit instead of px unit. 1rem = 16px.
- At least use level one heading, if there's no requirement h1 element then set its font size to 0
h1{font-size: 0; }
. - You should write a media query for the tablet as well, it's not perfect for iPad.
I hope it adds to your learning. Happy coding :)
0 - @yacineKahlerrasSubmitted over 2 years ago
any feedback is welcome 🤗
@iprinceroyyPosted over 2 years agoHey @yacineKahlerras, You did excellent work. I would suggest some points here:
- You can use modern CSS3 features like a clamp to make fuild-typography and min, and max for the responsive width.
- Wrap the contents in the main tag right after the body tag like this
<body> <main> Your contents..... </main> </body> I hope it adds to your learning. Happy Coding :)
Marked as helpful1 - @hanzlasaadiSubmitted over 2 years ago@iprinceroyyPosted over 2 years ago
Hey @hanzlasaadi, Great work. You need to focus on some points here:
- Don't use h1 multiple times, there can be only one h1 through the web page.
- Those avatar images with title, you can use figure & figcaption tag for that figcaption.
- Use the blockquote tag for quotes text.
- span is an inline tag, it can't be used as a block tag. Use div for the block.
- Increase the padding of the container to match with provided design.
.container{padding: 5rem; }
- Use relative unit instead of px unit. 1rem = 16px.
Hope it adds to your learning. Happy coding :)
Marked as helpful1