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