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