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