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