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