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