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