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