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