@HaswolinskSubmitted over 1 year ago
Someone any idea of how for simplify my code? I have no idea how I could further simplify this code, but I welcome suggestions :]
Someone any idea of how for simplify my code? I have no idea how I could further simplify this code, but I welcome suggestions :]
Okay so here are some suggestions :
<p style="margin-top: 0;">P E R F U M E</p>
, t=you could've also used letter-spacing: x px;
to get more control.h1 {...}
in your <styles>
tag, you still have added inline styles to the <h1>
in the HTML. I would definitely recommend maintaining a different file for CSS and maybe even go and look into CSS selectors in depth. It really helps selecting and fine-tuning specific elements..card
, try using display: flex; align-items: space-between
:root
element. So for example something like ::root {
--color-primary: #0FF;
--color-secondary: #000;
--color-white: #FFF;
--font: "Montserrat", sans-serif;
}
Other than this, you did a really good job making this. Congratulations it looks amazing!