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