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