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