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