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