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