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