Design comparison
Solution retrospective
Any resources to learn Sass or Sass documentation is enough to learn?
Community feedback
- @correlucasPosted about 2 years ago
Hello again Troy, congratulations for your new solution!
Answering your question:
Here's is a good resource to have your first steps with SASS, this 20min video will give you an overview about this tool:
https://www.youtube.com/watch?v=Zz6eOVaaelI
Your html is working but you can improve it using meaningful tags and replace the divs, for example the main div that takes all the content can be wrapped with
<main>
or section, about the cards you can replace the<div>
that wraps each card with<article>
you can wrap the paragraph with the quote with the tag<blockquote>
this way you'll wrap each block of element with the best tag in this situation. Pay attention that<div>
is only a block element without meaning.Hope this helps, keep it up
Marked as helpful1 - @troy03Posted about 2 years ago
Thanks next goal to make a project using SASS then framework. Next going to relearn JavaScript and React hope I can try an intermediate project.
2@correlucasPosted about 2 years ago@troy03 This is amazing! I left you another comment talking about semantics
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord