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