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