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