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