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