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