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