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