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