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