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