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