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