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