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