Check out my web site, what do you think?
DaftEndev
@DaftEndevAll comments
- @MaxiJRomSubmitted about 2 years ago@DaftEndevPosted about 2 years ago
Hello @MaxiJRom. Nice result for this project. I like the organization of your CSS!
Here are some tips I can give you:
-The designs given with the challenge are in true format (1440px for desktop and 375px for mobile usually). So you can open them in an image editing software to check the exact dimensions of the elements.
-You use selector
class
, while you could directly use an element as a selector. For example: Instead of writing<p class="paragraph white">
and select with.paragraph
in your CSS, you can just writep
,div p
,div > p
, ormain p
as selector in your CSS. Same for your<main>
and<h2>
, class are not necessary here.-You should use the semantic element
<section>
instead of your<div>
.I hope this can help you. keep conding!
Marked as helpful0