i don't know if that's the most effective way to use import a font family
@font-face { font-family: 'Outfit'; src: url('./fonts/Outfit-VariableFont_wght.ttf') format('truetype'); }
next time i would use an URL to import the font
What specific areas of your project would you like help with?that's my first time i was serious designing a page so i tried to be as "standard" as possible, in the sense that i tried to use specific class name such as ".container" and not just random name, but i feel i didn't follow every conventions and for some of you this stylesheet may seems not clean. for instance:
container img{ border-radius: 8px; max-width: 100%; height: auto; }
is that the right way to fit an image inside a container?
.container p{ font-size:15px; font-weight: 400; }
should i use pixel or other metrics(em, rem...) for the font-size? which one is more professional?