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