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