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