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