I want to make a Logo out of two Fonts, but as you can see here, one font has close to no "padding" on top (left) and the other (right) font has. This makes it difficult to line them up. This is how i import the fonts:
@font-face {
font-family:'hatton';
src: url(fonts/Hatton-Medium.otf);
}
@font-face {
font-family:'neuemachina';
src: url(fonts/NeueMachina-Regular.otf);
}
Is there anything i can add to the import, so the fonts have the same "padding"?
Thanks in advance!