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