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