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