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