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