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