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