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