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