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