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