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