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