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