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