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