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