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