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