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