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