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