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