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