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