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