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