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