Use on the webTotal Use [ 5789 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/ca6580e5d471a23c70bca2597360a391?family=Oddity+Trial+Condensed+Extra+Black" 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/ca6580e5d471a23c70bca2597360a391?family=Oddity+Trial+Condensed+Extra+Black);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Oddity Trial Condensed Extra Black";
src: url("https://db.onlinewebfonts.com/t/ca6580e5d471a23c70bca2597360a391.eot");
src: url("https://db.onlinewebfonts.com/t/ca6580e5d471a23c70bca2597360a391.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/ca6580e5d471a23c70bca2597360a391.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/ca6580e5d471a23c70bca2597360a391.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/ca6580e5d471a23c70bca2597360a391.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/ca6580e5d471a23c70bca2597360a391.svg#Oddity Trial Condensed Extra Black")format("svg");
}
2CSS rules to specify fonts
font-family: "Oddity Trial Condensed Extra Black";