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