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