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