Latest solutions
Simple HTML,CSS and JAVASCRIPT
Submitted about 1 year agoAny recommedation to improved my work is welcome.
Firebase 10.5, ReactJs, react-beautiful-dnd, Scss. Authentication
#fetch#firebase#react#react-router#sass/scssSubmitted over 1 year ago
Latest comments
- @parkerrn9@hatwell-jonel
Hi, I've seen that when you put the responsiveness of the web in mobile or table size the content is overflowing to the size of the screen. additionally, On your HTML structure I think it much better if you use <main> tag than <div>. then suggest that you use BEM - Block Element Modifier for naming class.
BEM LINK: https://getbem.com/naming/
Marked as helpful - @CaitlinECataldo@hatwell-jonel
Hi! Great work, I saw your work and I have some suggestion that can possibly improve your work.
- I think you should store all your image in one folder directory for much cleaner. file structure for your projects.
- the in testimonials class the grid-template-columns, it much better if you just use "grid-template-columns: repeat(6, auto)."
.testimonials { display: grid; grid-template-columns: auto auto auto auto auto auto; } .testimonials { display: grid; grid-template-columns: repeat(6, auto); }
Keep coding. 👍👍👍
Marked as helpful - @Cheche114@hatwell-jonel
Hi, Great work. I saw your solution and there's some things that I think need some improvements,
- The whitespace when you adjustment the screen to mobile width, it is too tight or narrow.
- The Font size you should make it larger.
- The spacing in each sentence row, you need to add more space.
- the register word in button, you have to change the color based on the design. and add box shadow to it.
- the social media's button you should add more padding.
keep coding. 👍👍👍
Marked as helpful - @Bryan18201
- @lubnafathima@hatwell-jonel
-
The HTML lang attribute is used to identify the language of text content on the web. This information helps search engines return language specific results, and it is also used by screen readers that switch language profiles to provide the correct accent and pronunciation. you can fix that by adding lang="en" (if your language is English) inside the html opening tag.
-
you have one main landmark like <h1> tag to identify the main content. A main landmark provides a navigation point to the primary content of the page for users of assistive technologies. since there is no page title visible in the design, you can make the h1 not to be visible on your page.
-
In your html code you used role="row" this landmark can be used only within the grid container.
suggestion:
-
change your container div to main tag. so you don't need to use role="main"
-
get rid of role="row" if you do not want to grid your container.
-
please click the Generate New Report button inside the Report page to know if there is still some issues in your work.
:) :) :)
Marked as helpful -
- @lubnafathima@hatwell-jonel
Hey! congratulations for finishing this challenge. there are some problem the i saw in your work.
-
when you view the the solution on the small screen device the cards is scrollable.
-
the cards is too stretch when you view it in the portrait screen.
-
you use <button> tag instead of <a> tag in learn more button.
-
the accessibility and HTML issue
suggested solution: to utilize the size of the cards you can use max-width or max-height to it. and for the <button> tag you must change it to <a> tag because when you are linking content in the website its ideal to use <a> tag than <button> tag. as for the accessibility and html issue you can check it in report page.
articles:
https://medium.com/design-code-repository/a-vs-button-b859547cae4d
https://ishadeed.com/article/min-max-css/
https://www.google.com/amp/s/www.freecodecamp.org/news/css-properties-examples/amp/
Marked as helpful -