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