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