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