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