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