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