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