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