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