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