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