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