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