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