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