I want to create a logo with CSS using two different font families on a single a href
For example
<style>
a#logo{
"LogoWith" - font-family:sans;
"TwoFontFamilies" - font-family:Ariel;
}
</style>
<a id="logo" href="#">LogoWithTwoFontFamilies</a>
I know the CSS I wrote is wrong. I just can’t seem to find a solution to applying two different font-families on a single string.
Just use spans in the middle of your
atag: