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