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