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