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