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