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