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