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