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