Use on the webTotal Use [ 5925 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/ed4dcfcfd49bd2e3fc8e6652c33831cb?family=Zodiac+Key+Condensed" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/ed4dcfcfd49bd2e3fc8e6652c33831cb?family=Zodiac+Key+Condensed);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Zodiac Key Condensed";
src: url("https://db.onlinewebfonts.com/t/ed4dcfcfd49bd2e3fc8e6652c33831cb.eot");
src: url("https://db.onlinewebfonts.com/t/ed4dcfcfd49bd2e3fc8e6652c33831cb.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/ed4dcfcfd49bd2e3fc8e6652c33831cb.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/ed4dcfcfd49bd2e3fc8e6652c33831cb.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/ed4dcfcfd49bd2e3fc8e6652c33831cb.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/ed4dcfcfd49bd2e3fc8e6652c33831cb.svg#Zodiac Key Condensed")format("svg");
}
2CSS rules to specify fonts
font-family: "Zodiac Key Condensed";