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