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