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