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