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