ImposterCodeVault
@ImposterCodeVaultAll comments
- @FahryWinataP@ImposterCodeVault
- It looks like the default margin on your h2 and h3 tags are pushing the text out a bit. You could set the margin on those tags in css like this if you wanted to adjust that:
h2 {margin: 0px}
- It also looks like you might have mislabeled a css class -> You have styling for an h1 tag, but in the html you are using an h2 tag. If this was intentional then no worries, just thought I'd point it out
Marked as helpful - @uixcemP@ImposterCodeVault
Looks good.
The design in the challenge has a border on the card, you can add this by adding this to your card CSS class:
border: solid 1px black;
Otherwise nice!
Marked as helpful - @GentlestanP@ImposterCodeVault
Nice job.
You can import the font used in the challenge into your solution by adding this inside the head tags:
<link href="https://fonts.googleapis.com/css?family=Outfit" rel="stylesheet" />
And then you can use the font in a class by adding this to the class:
font-family: "Outfit";
Marked as helpful