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