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