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