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