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