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