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