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