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