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