I think it's pretty close... 🤔
Keith Bloodworth
@N4thxnAll comments
- @aykinsancakliSubmitted 10 months ago@N4thxnPosted 9 months ago
Hello,
I'm curious how you're able to get the size of the card to be the same as the challenge. I can't figure out the sizing of anything and am mostly shooting around in the dark. I'm new to coding as I've only been doing it for about a month so any advice helps!
0 - @faridlakbarSubmitted 9 months ago
i still don't understand about adding the font-face with font variable, when i use tech('variation') it's not working, so i don't use it. and i got difficulty in finding what is the font family that should use (the name of font family), the instruction said i should use app to know the font family but after i search until now i still don't know the app. but when I compose according to the font name it works.
i am sorry for my bad english...
@N4thxnPosted 9 months agoHello!
I learned how to use @font-family fairly recently but it isn't complicated at all!
@font-face { font-family: use whatever name you would like here; url(use the file address for the font relative to where your index.html is, for example mine was assets/fonts/font-name.ttf)
after that, you can use font-family on any of your elements simply by doing
font-family: the name you chose in @font-face;
Marked as helpful0