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