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