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