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