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