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