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