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