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