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