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