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