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