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