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