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