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