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