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