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