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