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