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