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