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