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