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