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