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