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