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